Casting

A type cast converts a value of one type to another. Zig has Type Coercion for conversions that are known to be completely safe and unambiguous, and Explicit Casts for conversions that one would not want to happen on accident. There is also a third kind of type conversion called Peer Type Resolution for the case when a result type must be decided given multiple operand types.

Type Coercion

Type coercion occurs when one type is expected, but different type is provided:

test.zig

  1. test "type coercion - variable declaration" {
  2. var a: u8 = 1;
  3. var b: u16 = a;
  4. }
  5. test "type coercion - function call" {
  6. var a: u8 = 1;
  7. foo(a);
  8. }
  9. fn foo(b: u16) void {}
  10. test "type coercion - @as builtin" {
  11. var a: u8 = 1;
  12. var b = @as(u16, a);
  13. }
  1. $ zig test test.zig
  2. 1/3 test "type coercion - variable declaration"... OK
  3. 2/3 test "type coercion - function call"... OK
  4. 3/3 test "type coercion - @as builtin"... OK
  5. 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.

Type Coercion: Stricter Qualification

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 allowed
  • volatile - non-volatile to volatile is allowed
  • align - bigger to smaller alignment is allowed
  • error sets to supersets is allowed

These casts are no-ops at runtime since the value representation does not change.

test.zig

  1. test "type coercion - const qualification" {
  2. var a: i32 = 1;
  3. var b: *i32 = &a;
  4. foo(b);
  5. }
  6. fn foo(a: *const i32) void {}
  1. $ zig test test.zig
  2. 1/1 test "type coercion - const qualification"... OK
  3. All 1 tests passed.

In addition, pointers coerce to const optional pointers:

test.zig

  1. const std = @import("std");
  2. const expect = std.testing.expect;
  3. const mem = std.mem;
  4. test "cast *[1][*]const u8 to [*]const ?[*]const u8" {
  5. const window_name = [1][*]const u8{"window name"};
  6. const x: [*]const ?[*]const u8 = &window_name;
  7. expect(mem.eql(u8, std.mem.spanZ(@ptrCast([*:0]const u8, x[0].?)), "window name"));
  8. }
  1. $ zig test test.zig
  2. 1/1 test "cast *[1][*]const u8 to [*]const ?[*]const u8"... OK
  3. All 1 tests passed.

Type Coercion: Integer and Float Widening

Integers 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

  1. const std = @import("std");
  2. const expect = std.testing.expect;
  3. const mem = std.mem;
  4. test "integer widening" {
  5. var a: u8 = 250;
  6. var b: u16 = a;
  7. var c: u32 = b;
  8. var d: u64 = c;
  9. var e: u64 = d;
  10. var f: u128 = e;
  11. expect(f == a);
  12. }
  13. test "implicit unsigned integer to signed integer" {
  14. var a: u8 = 250;
  15. var b: i16 = a;
  16. expect(b == 250);
  17. }
  18. test "float widening" {
  19. // Note: there is an open issue preventing this from working on aarch64:
  20. // https://github.com/ziglang/zig/issues/3282
  21. if (std.Target.current.cpu.arch == .aarch64) return error.SkipZigTest;
  22. var a: f16 = 12.34;
  23. var b: f32 = a;
  24. var c: f64 = b;
  25. var d: f128 = c;
  26. expect(d == a);
  27. }
  1. $ zig test test.zig
  2. 1/3 test "integer widening"... OK
  3. 2/3 test "implicit unsigned integer to signed integer"... OK
  4. 3/3 test "float widening"... OK
  5. All 3 tests passed.

Type Coercion: Coercion Float to Int

A compiler error is appropriate because this ambiguous expression leaves the compiler two choices about the coercion.

  • Cast 54.0 to comptime_int resulting in @as(comptime_int, 10), which is casted to @as(f32, 10)
  • Cast 5 to comptime_float resulting in @as(comptime_float, 10.8), which is casted to @as(f32, 10.8)

test.zig

  1. // Compile time coercion of float to int
  2. test "implicit cast to comptime_int" {
  3. var f: f32 = 54.0 / 5;
  4. }
  1. $ zig test test.zig
  2. ./docgen_tmp/test.zig:3:18: error: float value 54.000000 cannot be coerced to type 'comptime_int'
  3. var f: f32 = 54.0 / 5;
  4. ^
  5. ./docgen_tmp/test.zig:3:23: note: referenced here
  6. var f: f32 = 54.0 / 5;
  7. ^

Type Coercion: Arrays and Pointers

coerce_arrays_and_ptrs.zig

  1. const std = @import("std");
  2. const expect = std.testing.expect;
  3. // This cast exists primarily so that string literals can be
  4. // passed to functions that accept const slices. However
  5. // it is probably going to be removed from the language when
  6. // https://github.com/ziglang/zig/issues/265 is implemented.
  7. test "[N]T to []const T" {
  8. var x1: []const u8 = "hello";
  9. var x2: []const u8 = &[5]u8{ 'h', 'e', 'l', 'l', 111 };
  10. expect(std.mem.eql(u8, x1, x2));
  11. var y: []const f32 = &[2]f32{ 1.2, 3.4 };
  12. expect(y[0] == 1.2);
  13. }
  14. // Likewise, it works when the destination type is an error union.
  15. test "[N]T to E![]const T" {
  16. var x1: anyerror![]const u8 = "hello";
  17. var x2: anyerror![]const u8 = &[5]u8{ 'h', 'e', 'l', 'l', 111 };
  18. expect(std.mem.eql(u8, try x1, try x2));
  19. var y: anyerror![]const f32 = &[2]f32{ 1.2, 3.4 };
  20. expect((try y)[0] == 1.2);
  21. }
  22. // Likewise, it works when the destination type is an optional.
  23. test "[N]T to ?[]const T" {
  24. var x1: ?[]const u8 = "hello";
  25. var x2: ?[]const u8 = &[5]u8{ 'h', 'e', 'l', 'l', 111 };
  26. expect(std.mem.eql(u8, x1.?, x2.?));
  27. var y: ?[]const f32 = &[2]f32{ 1.2, 3.4 };
  28. expect(y.?[0] == 1.2);
  29. }
  30. // In this cast, the array length becomes the slice length.
  31. test "*[N]T to []T" {
  32. var buf: [5]u8 = "hello".*;
  33. const x: []u8 = &buf;
  34. expect(std.mem.eql(u8, x, "hello"));
  35. const buf2 = [2]f32{ 1.2, 3.4 };
  36. const x2: []const f32 = &buf2;
  37. expect(std.mem.eql(f32, x2, &[2]f32{ 1.2, 3.4 }));
  38. }
  39. // Single-item pointers to arrays can be coerced to
  40. // unknown length pointers.
  41. test "*[N]T to [*]T" {
  42. var buf: [5]u8 = "hello".*;
  43. const x: [*]u8 = &buf;
  44. expect(x[4] == 'o');
  45. // x[5] would be an uncaught out of bounds pointer dereference!
  46. }
  47. // Likewise, it works when the destination type is an optional.
  48. test "*[N]T to ?[*]T" {
  49. var buf: [5]u8 = "hello".*;
  50. const x: ?[*]u8 = &buf;
  51. expect(x.?[4] == 'o');
  52. }
  53. // Single-item pointers can be cast to len-1 single-item arrays.
  54. test "*T to *[1]T" {
  55. var x: i32 = 1234;
  56. const y: *[1]i32 = &x;
  57. const z: [*]i32 = y;
  58. expect(z[0] == 1234);
  59. }
  1. $ zig test coerce_arrays_and_ptrs.zig
  2. 1/7 test "[N]T to []const T"... OK
  3. 2/7 test "[N]T to E![]const T"... OK
  4. 3/7 test "[N]T to ?[]const T"... OK
  5. 4/7 test "*[N]T to []T"... OK
  6. 5/7 test "*[N]T to [*]T"... OK
  7. 6/7 test "*[N]T to ?[*]T"... OK
  8. 7/7 test "*T to *[1]T"... OK
  9. All 7 tests passed.

See also:

Type Coercion: Optionals

The payload type of Optionals, as well as null, coerce to the optional type.

test.zig

  1. const std = @import("std");
  2. const expect = std.testing.expect;
  3. test "coerce to optionals" {
  4. const x: ?i32 = 1234;
  5. const y: ?i32 = null;
  6. expect(x.? == 1234);
  7. expect(y == null);
  8. }
  1. $ zig test test.zig
  2. 1/1 test "coerce to optionals"... OK
  3. All 1 tests passed.

It works nested inside the Error Union Type, too:

test.zig

  1. const std = @import("std");
  2. const expect = std.testing.expect;
  3. test "coerce to optionals wrapped in error union" {
  4. const x: anyerror!?i32 = 1234;
  5. const y: anyerror!?i32 = null;
  6. expect((try x).? == 1234);
  7. expect((try y) == null);
  8. }
  1. $ zig test test.zig
  2. 1/1 test "coerce to optionals wrapped in error union"... OK
  3. All 1 tests passed.

Type Coercion: Error Unions

The payload type of an Error Union Type as well as the Error Set Type coerce to the error union type:

test.zig

  1. const std = @import("std");
  2. const expect = std.testing.expect;
  3. test "coercion to error unions" {
  4. const x: anyerror!i32 = 1234;
  5. const y: anyerror!i32 = error.Failure;
  6. expect((try x) == 1234);
  7. std.testing.expectError(error.Failure, y);
  8. }
  1. $ zig test test.zig
  2. 1/1 test "coercion to error unions"... OK
  3. 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

  1. const std = @import("std");
  2. const expect = std.testing.expect;
  3. test "coercing large integer type to smaller one when value is comptime known to fit" {
  4. const x: u64 = 255;
  5. const y: u8 = x;
  6. expect(y == 255);
  7. }
  1. $ zig test test.zig
  2. 1/1 test "coercing large integer type to smaller one when value is comptime known to fit"... OK
  3. All 1 tests passed.

Type Coercion: unions and enums

Tagged unions can be coerced to enums, and enums can be coerced to tagged unions when they are comptime-known to be a field of the union that has only one possible value, such as void:

test.zig

  1. const std = @import("std");
  2. const expect = std.testing.expect;
  3. const E = enum {
  4. one,
  5. two,
  6. three,
  7. };
  8. const U = union(E) {
  9. one: i32,
  10. two: f32,
  11. three,
  12. };
  13. test "coercion between unions and enums" {
  14. var u = U{ .two = 12.34 };
  15. var e: E = u;
  16. expect(e == E.two);
  17. const three = E.three;
  18. var another_u: U = three;
  19. expect(another_u == E.three);
  20. }
  1. $ zig test test.zig
  2. 1/1 test "coercion between unions and enums"... OK
  3. All 1 tests passed.

See also:

Type Coercion: Zero Bit Types

Zero Bit Types may be coerced to single-item Pointers, regardless of const.

TODO document the reasoning for this

TODO document whether vice versa should work and why

test.zig

  1. test "coercion of zero bit types" {
  2. var x: void = {};
  3. var y: *void = x;
  4. //var z: void = y; // TODO
  5. }
  1. $ zig test test.zig
  2. 1/1 test "coercion of zero bit types"... OK
  3. All 1 tests passed.

Type Coercion: undefined

undefined can be cast to any type.

Explicit Casts

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.

  • @bitCast - change type but maintain bit representation
  • @alignCast - make a pointer have more alignment
  • @boolToInt - convert true to 1 and false to 0
  • @enumToInt - obtain the integer tag value of an enum or tagged union
  • @errSetCast - convert to a smaller error set
  • @errorToInt - obtain the integer value of an error code
  • @floatCast - convert a larger float to a smaller float
  • @floatToInt - obtain the integer part of a float value
  • @intCast - convert between integer types
  • @intToEnum - obtain an enum value based on its integer tag value
  • @intToError - obtain an error code based on its integer value
  • @intToFloat - convert an integer to a float value
  • @intToPtr - convert an address to a pointer
  • @ptrCast - convert between pointer types
  • @ptrToInt - obtain the address of a pointer
  • @truncate - convert between integer types, chopping off bits

Peer Type Resolution

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

  1. const std = @import("std");
  2. const expect = std.testing.expect;
  3. const mem = std.mem;
  4. test "peer resolve int widening" {
  5. var a: i8 = 12;
  6. var b: i16 = 34;
  7. var c = a + b;
  8. expect(c == 46);
  9. expect(@TypeOf(c) == i16);
  10. }
  11. test "peer resolve arrays of different size to const slice" {
  12. expect(mem.eql(u8, boolToStr(true), "true"));
  13. expect(mem.eql(u8, boolToStr(false), "false"));
  14. comptime expect(mem.eql(u8, boolToStr(true), "true"));
  15. comptime expect(mem.eql(u8, boolToStr(false), "false"));
  16. }
  17. fn boolToStr(b: bool) []const u8 {
  18. return if (b) "true" else "false";
  19. }
  20. test "peer resolve array and const slice" {
  21. testPeerResolveArrayConstSlice(true);
  22. comptime testPeerResolveArrayConstSlice(true);
  23. }
  24. fn testPeerResolveArrayConstSlice(b: bool) void {
  25. const value1 = if (b) "aoeu" else @as([]const u8, "zz");
  26. const value2 = if (b) @as([]const u8, "zz") else "aoeu";
  27. expect(mem.eql(u8, value1, "aoeu"));
  28. expect(mem.eql(u8, value2, "zz"));
  29. }
  30. test "peer type resolution: ?T and T" {
  31. expect(peerTypeTAndOptionalT(true, false).? == 0);
  32. expect(peerTypeTAndOptionalT(false, false).? == 3);
  33. comptime {
  34. expect(peerTypeTAndOptionalT(true, false).? == 0);
  35. expect(peerTypeTAndOptionalT(false, false).? == 3);
  36. }
  37. }
  38. fn peerTypeTAndOptionalT(c: bool, b: bool) ?usize {
  39. if (c) {
  40. return if (b) null else @as(usize, 0);
  41. }
  42. return @as(usize, 3);
  43. }
  44. test "peer type resolution: *[0]u8 and []const u8" {
  45. expect(peerTypeEmptyArrayAndSlice(true, "hi").len == 0);
  46. expect(peerTypeEmptyArrayAndSlice(false, "hi").len == 1);
  47. comptime {
  48. expect(peerTypeEmptyArrayAndSlice(true, "hi").len == 0);
  49. expect(peerTypeEmptyArrayAndSlice(false, "hi").len == 1);
  50. }
  51. }
  52. fn peerTypeEmptyArrayAndSlice(a: bool, slice: []const u8) []const u8 {
  53. if (a) {
  54. return &[_]u8{};
  55. }
  56. return slice[0..1];
  57. }
  58. test "peer type resolution: *[0]u8, []const u8, and anyerror![]u8" {
  59. {
  60. var data = "hi".*;
  61. const slice = data[0..];
  62. expect((try peerTypeEmptyArrayAndSliceAndError(true, slice)).len == 0);
  63. expect((try peerTypeEmptyArrayAndSliceAndError(false, slice)).len == 1);
  64. }
  65. comptime {
  66. var data = "hi".*;
  67. const slice = data[0..];
  68. expect((try peerTypeEmptyArrayAndSliceAndError(true, slice)).len == 0);
  69. expect((try peerTypeEmptyArrayAndSliceAndError(false, slice)).len == 1);
  70. }
  71. }
  72. fn peerTypeEmptyArrayAndSliceAndError(a: bool, slice: []u8) anyerror![]u8 {
  73. if (a) {
  74. return &[_]u8{};
  75. }
  76. return slice[0..1];
  77. }
  78. test "peer type resolution: *const T and ?*T" {
  79. const a = @intToPtr(*const usize, 0x123456780);
  80. const b = @intToPtr(?*usize, 0x123456780);
  81. expect(a == b);
  82. expect(b == a);
  83. }
  1. $ zig test peer_type_resolution.zig
  2. 1/7 test "peer resolve int widening"... OK
  3. 2/7 test "peer resolve arrays of different size to const slice"... OK
  4. 3/7 test "peer resolve array and const slice"... OK
  5. 4/7 test "peer type resolution: ?T and T"... OK
  6. 5/7 test "peer type resolution: *[0]u8 and []const u8"... OK
  7. 6/7 test "peer type resolution: *[0]u8, []const u8, and anyerror![]u8"... OK
  8. 7/7 test "peer type resolution: *const T and ?*T"... OK
  9. All 7 tests passed.