Casting

A type cast converts a value of one type to another. Zig has Implicit Casts 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.

Implicit Casts

An implicit cast occurs when one type is expected, but different type is provided:

test.zig

  1. test "implicit cast - variable declaration" {
  2. var a: u8 = 1;
  3. var b: u16 = a;
  4. }
  5. test "implicit cast - function call" {
  6. var a: u8 = 1;
  7. foo(a);
  8. }
  9. fn foo(b: u16) void {}
  10. test "implicit cast - invoke a type as a function" {
  11. var a: u8 = 1;
  12. var b = u16(a);
  13. }
  1. $ zig test test.zig
  2. 1/3 test "implicit cast - variable declaration"...OK
  3. 2/3 test "implicit cast - function call"...OK
  4. 3/3 test "implicit cast - invoke a type as a function"...OK
  5. All tests passed.

Implicit casts 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.

Implicit Cast: 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 "implicit cast - 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 "implicit cast - const qualification"...OK
  3. All tests passed.

In addition, pointers implicitly cast to const optional pointers:

test.zig

  1. const std = @import("std");
  2. const assert = std.debug.assert;
  3. const mem = std.mem;
  4. test "cast *[1][*]const u8 to [*]const ?[*]const u8" {
  5. const window_name = [1][*]const u8{c"window name"};
  6. const x: [*]const ?[*]const u8 = &window_name;
  7. assert(mem.eql(u8, std.mem.toSliceConst(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 tests passed.

Implicit Cast: Integer and Float Widening

Integers implicitly cast to integer types which can represent every value of the old type, and likewise Floats implicitly cast to float types which can represent every value of the old type.

test.zig

  1. const std = @import("std");
  2. const assert = std.debug.assert;
  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. assert(f == a);
  12. }
  13. test "implicit unsigned integer to signed integer" {
  14. var a: u8 = 250;
  15. var b: i16 = a;
  16. assert(b == 250);
  17. }
  18. test "float widening" {
  19. var a: f16 = 12.34;
  20. var b: f32 = a;
  21. var c: f64 = b;
  22. var d: f128 = c;
  23. assert(d == a);
  24. }
  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 tests passed.

Implicit Cast: Arrays and Pointers

test.zig

  1. const std = @import("std");
  2. const assert = std.debug.assert;
  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. assert(std.mem.eql(u8, x1, x2));
  11. var y: []const f32 = [2]f32{ 1.2, 3.4 };
  12. assert(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. assert(std.mem.eql(u8, try x1, try x2));
  19. var y: anyerror![]const f32 = [2]f32{ 1.2, 3.4 };
  20. assert((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. assert(std.mem.eql(u8, x1.?, x2.?));
  27. var y: ?[]const f32 = [2]f32{ 1.2, 3.4 };
  28. assert(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. assert(std.mem.eql(u8, x, "hello"));
  35. const buf2 = [2]f32{ 1.2, 3.4 };
  36. const x2: []const f32 = &buf2;
  37. assert(std.mem.eql(f32, x2, [2]f32{ 1.2, 3.4 }));
  38. }
  39. // Single-item pointers to arrays can be implicitly casted to
  40. // unknown length pointers.
  41. test "*[N]T to [*]T" {
  42. var buf: [5]u8 = "hello";
  43. const x: [*]u8 = &buf;
  44. assert(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. assert(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. assert(z[0] == 1234);
  59. }
  1. $ zig test test.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 tests passed.

See also:

Implicit Cast: Optionals

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

test.zig

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

It works nested inside the Error Union Type, too:

test.zig

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

Implicit Cast: Error Unions

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

test.zig

  1. const std = @import("std");
  2. const assert = std.debug.assert;
  3. test "implicit casting to error unions" {
  4. const x: anyerror!i32 = 1234;
  5. const y: anyerror!i32 = error.Failure;
  6. assert((try x) == 1234);
  7. std.testing.expectError(error.Failure, y);
  8. }
  1. $ zig test test.zig
  2. 1/1 test "implicit casting to error unions"...OK
  3. All tests passed.

Implicit Cast: Compile-Time Known Numbers

When a number is comptime-known to be representable in the destination type, it may be implicitly casted:

test.zig

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

Implicit Cast: unions and enums

Tagged unions can be implicitly cast to enums, and enums can be implicitly casted 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 assert = std.debug.assert;
  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 "implicit casting between unions and enums" {
  14. var u = U{ .Two = 12.34 };
  15. var e: E = u;
  16. assert(e == E.Two);
  17. const three = E.Three;
  18. var another_u: U = three;
  19. assert(another_u == E.Three);
  20. }
  1. $ zig test test.zig
  2. 1/1 test "implicit casting between unions and enums"...OK
  3. All tests passed.

See also:

Implicit Cast: Zero Bit Types

Zero Bit Types may be implicitly casted 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 "implicit casting 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 "implicit casting of zero bit types"...OK
  3. All tests passed.

Implicit Cast: 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
  • @bytesToSlice - convert a slice of bytes to a slice of another type
  • @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
  • @sliceToBytes - convert a slice of anything to a slice of bytes
  • @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 implicitly cast into. Here are some examples:

test.zig

  1. const std = @import("std");
  2. const assert = std.debug.assert;
  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. assert(c == 46);
  9. assert(@typeOf(c) == i16);
  10. }
  11. test "peer resolve arrays of different size to const slice" {
  12. assert(mem.eql(u8, boolToStr(true), "true"));
  13. assert(mem.eql(u8, boolToStr(false), "false"));
  14. comptime assert(mem.eql(u8, boolToStr(true), "true"));
  15. comptime assert(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 ([]const u8)("zz");
  26. const value2 = if (b) ([]const u8)("zz") else "aoeu";
  27. assert(mem.eql(u8, value1, "aoeu"));
  28. assert(mem.eql(u8, value2, "zz"));
  29. }
  30. test "peer type resolution: ?T and T" {
  31. assert(peerTypeTAndOptionalT(true, false).? == 0);
  32. assert(peerTypeTAndOptionalT(false, false).? == 3);
  33. comptime {
  34. assert(peerTypeTAndOptionalT(true, false).? == 0);
  35. assert(peerTypeTAndOptionalT(false, false).? == 3);
  36. }
  37. }
  38. fn peerTypeTAndOptionalT(c: bool, b: bool) ?usize {
  39. if (c) {
  40. return if (b) null else usize(0);
  41. }
  42. return usize(3);
  43. }
  44. test "peer type resolution: [0]u8 and []const u8" {
  45. assert(peerTypeEmptyArrayAndSlice(true, "hi").len == 0);
  46. assert(peerTypeEmptyArrayAndSlice(false, "hi").len == 1);
  47. comptime {
  48. assert(peerTypeEmptyArrayAndSlice(true, "hi").len == 0);
  49. assert(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. assert((try peerTypeEmptyArrayAndSliceAndError(true, slice)).len == 0);
  63. assert((try peerTypeEmptyArrayAndSliceAndError(false, slice)).len == 1);
  64. }
  65. comptime {
  66. var data = "hi";
  67. const slice = data[0..];
  68. assert((try peerTypeEmptyArrayAndSliceAndError(true, slice)).len == 0);
  69. assert((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, 0x123456789);
  80. const b = @intToPtr(?*usize, 0x123456789);
  81. assert(a == b);
  82. assert(b == a);
  83. }
  1. $ zig test test.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 tests passed.