authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2018-06-19 12:16:59-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2018-06-19 12:16:59-04:00
log0b92d689d0e64164bb8908c807db9338d59c41ce
treedd834c08f8aa7114b3f5487cae816043dd321cf4
parent85422d7aeadc453ec621d0624f394c3f4e3f619f

update langref


1 files changed, 7 insertions(+), 0 deletions(-)

doc/langref.html.in+7
...@@ -5688,10 +5688,17 @@ pub const TypeInfo = union(TypeId) {...@@ -5688,10 +5688,17 @@ pub const TypeInfo = union(TypeId) {
5688 };5688 };
56895689
5690 pub const Pointer = struct {5690 pub const Pointer = struct {
5691 size: Size,
5691 is_const: bool,5692 is_const: bool,
5692 is_volatile: bool,5693 is_volatile: bool,
5693 alignment: u32,5694 alignment: u32,
5694 child: type,5695 child: type,
5696
5697 pub const Size = enum {
5698 One,
5699 Many,
5700 Slice,
5701 };
5695 };5702 };
56965703
5697 pub const Array = struct {5704 pub const Array = struct {