Casting
Type coercion occurs when one type is expected, but different type is provided:
test.zig
1/3 test "type coercion - variable declaration"...OK
2/3 test "type coercion - function call"...OK
3/3 test "type coercion - @as builtin"...OK
All 3 tests passed.
Type coercions are only allowed when it is completely unambiguous how to get from one type to another, and the transformation is guaranteed to be safe. There is one exception, which is C Pointers.
Values which have the same representation at runtime can be cast to increase the strictness of the qualifiers, no matter how nested the qualifiers are:
const
- non-const to const is allowedvolatile
- non-volatile to volatile is allowedalign
- bigger to smaller alignment is allowed- to supersets is allowed
These casts are no-ops at runtime since the value representation does not change.
test.zig
test "type coercion - const qualification" {
var a: i32 = 1;
var b: *i32 = &a;
foo(b);
}
fn foo(a: *const i32) void {}
$ zig test test.zig
1/1 test "type coercion - const qualification"...OK
All 1 tests passed.
In addition, pointers coerce to const optional pointers:
test.zig
const std = @import("std");
const assert = std.debug.assert;
const mem = std.mem;
test "cast *[1][*]const u8 to [*]const ?[*]const u8" {
const window_name = [1][*]const u8{"window name"};
const x: [*]const ?[*]const u8 = &window_name;
assert(mem.eql(u8, std.mem.spanZ(@ptrCast([*:0]const u8, x[0].?)), "window name"));
}
$ zig test test.zig
1/1 test "cast *[1][*]const u8 to [*]const ?[*]const u8"...OK
All 1 tests passed.
Type Coercion: Integer and Float Widening
coerce to integer types which can represent every value of the old type, and likewise Floats coerce to float types which can represent every value of the old type.
test.zig
const std = @import("std");
const assert = std.debug.assert;
const mem = std.mem;
test "integer widening" {
var a: u8 = 250;
var b: u16 = a;
var c: u32 = b;
var d: u64 = c;
var e: u64 = d;
var f: u128 = e;
assert(f == a);
}
test "implicit unsigned integer to signed integer" {
var a: u8 = 250;
var b: i16 = a;
assert(b == 250);
}
test "float widening" {
// Note: there is an open issue preventing this from working on aarch64:
// https://github.com/ziglang/zig/issues/3282
if (std.Target.current.cpu.arch == .aarch64) return error.SkipZigTest;
var a: f16 = 12.34;
var b: f32 = a;
var c: f64 = b;
var d: f128 = c;
assert(d == a);
}
$ zig test test.zig
1/3 test "integer widening"...OK
2/3 test "implicit unsigned integer to signed integer"...OK
3/3 test "float widening"...OK
All 3 tests passed.
Type Coercion: Arrays and Pointers
$ zig test coerce_arrays_and_ptrs.zig
1/7 test "[N]T to []const T"...OK
2/7 test "[N]T to E![]const T"...OK
3/7 test "[N]T to ?[]const T"...OK
4/7 test "*[N]T to []T"...OK
5/7 test "*[N]T to [*]T"...OK
6/7 test "*[N]T to ?[*]T"...OK
7/7 test "*T to *[1]T"...OK
All 7 tests passed.
See also:
The payload type of , as well as null, coerce to the optional type.
test.zig
const std = @import("std");
const assert = std.debug.assert;
test "coerce to optionals" {
const x: ?i32 = 1234;
const y: ?i32 = null;
assert(y == null);
$ zig test test.zig
1/1 test "coerce to optionals"...OK
All 1 tests passed.
It works nested inside the , too:
test.zig
const std = @import("std");
const assert = std.debug.assert;
test "coerce to optionals wrapped in error union" {
const x: anyerror!?i32 = 1234;
const y: anyerror!?i32 = null;
assert((try x).? == 1234);
assert((try y) == null);
}
$ zig test test.zig
1/1 test "coerce to optionals wrapped in error union"...OK
All 1 tests passed.
Type Coercion: Error Unions
The payload type of an as well as the Error Set Type coerce to the error union type:
test.zig
const std = @import("std");
const assert = std.debug.assert;
test "coercion to error unions" {
const x: anyerror!i32 = 1234;
const y: anyerror!i32 = error.Failure;
assert((try x) == 1234);
std.testing.expectError(error.Failure, y);
}
$ zig test test.zig
1/1 test "coercion to error unions"...OK
All 1 tests passed.
Type Coercion: Compile-Time Known Numbers
When a number is comptime-known to be representable in the destination type, it may be coerced:
test.zig
$ zig test test.zig
1/1 test "coercing large integer type to smaller one when value is comptime known to fit"...OK
All 1 tests passed.
Tagged unions can be coerced to enums, and enums can be coerced to tagged unions when they are -known to be a field of the union that has only one possible value, such as void:
const std = @import("std");
const assert = std.debug.assert;
const E = enum {
One,
Two,
Three,
};
const U = union(E) {
One: i32,
Two: f32,
Three,
};
test "coercion between unions and enums" {
var u = U{ .Two = 12.34 };
var e: E = u;
assert(e == E.Two);
const three = E.Three;
var another_u: U = three;
assert(another_u == E.Three);
}
$ zig test test.zig
1/1 test "coercion between unions and enums"...OK
All 1 tests passed.
See also:
Type Coercion: Zero Bit Types
Zero Bit Types may be coerced to single-item , regardless of const.
TODO document the reasoning for this
TODO document whether vice versa should work and why
test.zig
test "coercion of zero bit types" {
var x: void = {};
var y: *void = x;
//var z: void = y; // TODO
}
$ zig test test.zig
1/1 test "coercion of zero bit types"...OK
All 1 tests passed.
Type Coercion: undefined
can be cast to any type.
Explicit casts are performed via Builtin Functions. Some explicit casts are safe; some are not. Some explicit casts perform language-level assertions; some do not. Some explicit casts are no-ops at runtime; some are not.
- - change type but maintain bit representation
- @alignCast - make a pointer have more alignment
- - convert true to 1 and false to 0
- @enumToInt - obtain the integer tag value of an enum or tagged union
- - convert to a smaller error set
- @errorToInt - obtain the integer value of an error code
- - convert a larger float to a smaller float
- @floatToInt - obtain the integer part of a float value
- - convert between integer types
- @intToEnum - obtain an enum value based on its integer tag value
- - obtain an error code based on its integer value
- @intToFloat - convert an integer to a float value
- - convert an address to a pointer
- @ptrCast - convert between pointer types
- - obtain the address of a pointer
- @truncate - convert between integer types, chopping off bits
Peer Type Resolution occurs in these places:
This kind of type resolution chooses a type that all peer types can coerce into. Here are some examples:
peer_type_resolution.zig
const std = @import("std");
const assert = std.debug.assert;
const mem = std.mem;
test "peer resolve int widening" {
var a: i8 = 12;
var b: i16 = 34;
var c = a + b;
assert(c == 46);
assert(@TypeOf(c) == i16);
}
test "peer resolve arrays of different size to const slice" {
assert(mem.eql(u8, boolToStr(true), "true"));
assert(mem.eql(u8, boolToStr(false), "false"));
comptime assert(mem.eql(u8, boolToStr(true), "true"));
}
fn boolToStr(b: bool) []const u8 {
return if (b) "true" else "false";
}
test "peer resolve array and const slice" {
testPeerResolveArrayConstSlice(true);
comptime testPeerResolveArrayConstSlice(true);
}
fn testPeerResolveArrayConstSlice(b: bool) void {
const value1 = if (b) "aoeu" else @as([]const u8, "zz");
const value2 = if (b) @as([]const u8, "zz") else "aoeu";
assert(mem.eql(u8, value1, "aoeu"));
assert(mem.eql(u8, value2, "zz"));
}
test "peer type resolution: ?T and T" {
assert(peerTypeTAndOptionalT(true, false).? == 0);
assert(peerTypeTAndOptionalT(false, false).? == 3);
comptime {
assert(peerTypeTAndOptionalT(true, false).? == 0);
assert(peerTypeTAndOptionalT(false, false).? == 3);
}
}
fn peerTypeTAndOptionalT(c: bool, b: bool) ?usize {
if (c) {
return if (b) null else @as(usize, 0);
}
return @as(usize, 3);
}
test "peer type resolution: *[0]u8 and []const u8" {
assert(peerTypeEmptyArrayAndSlice(true, "hi").len == 0);
assert(peerTypeEmptyArrayAndSlice(false, "hi").len == 1);
comptime {
assert(peerTypeEmptyArrayAndSlice(true, "hi").len == 0);
assert(peerTypeEmptyArrayAndSlice(false, "hi").len == 1);
}
}
fn peerTypeEmptyArrayAndSlice(a: bool, slice: []const u8) []const u8 {
if (a) {
return &[_]u8{};
}
return slice[0..1];
}
test "peer type resolution: *[0]u8, []const u8, and anyerror![]u8" {
{
var data = "hi".*;
const slice = data[0..];
assert((try peerTypeEmptyArrayAndSliceAndError(true, slice)).len == 0);
assert((try peerTypeEmptyArrayAndSliceAndError(false, slice)).len == 1);
}
comptime {
var data = "hi".*;
const slice = data[0..];
assert((try peerTypeEmptyArrayAndSliceAndError(true, slice)).len == 0);
assert((try peerTypeEmptyArrayAndSliceAndError(false, slice)).len == 1);
}
}
fn peerTypeEmptyArrayAndSliceAndError(a: bool, slice: []u8) anyerror![]u8 {
if (a) {
return &[_]u8{};
}
return slice[0..1];
}
test "peer type resolution: *const T and ?*T" {
const a = @intToPtr(*const usize, 0x123456780);
const b = @intToPtr(?*usize, 0x123456780);
assert(a == b);
assert(b == a);
}
$ zig test peer_type_resolution.zig
1/7 test "peer resolve int widening"...OK
2/7 test "peer resolve arrays of different size to const slice"...OK
3/7 test "peer resolve array and const slice"...OK
4/7 test "peer type resolution: ?T and T"...OK
5/7 test "peer type resolution: *[0]u8 and []const u8"...OK
6/7 test "peer type resolution: *[0]u8, []const u8, and anyerror![]u8"...OK
7/7 test "peer type resolution: *const T and ?*T"...OK