| author | |
| committer | |
| log | 0b92d689d0e64164bb8908c807db9338d59c41ce |
| tree | dd834c08f8aa7114b3f5487cae816043dd321cf4 |
| parent | 85422d7aeadc453ec621d0624f394c3f4e3f619f |
1 files changed, 7 insertions(+), 0 deletions(-)
doc/langref.html.in+7| ... | ... | @@ -5688,10 +5688,17 @@ pub const TypeInfo = union(TypeId) { |
| 5688 | 5688 | }; |
| 5689 | 5689 | |
| 5690 | 5690 | pub const Pointer = struct { |
| 5691 | size: Size, | |
| 5691 | 5692 | is_const: bool, |
| 5692 | 5693 | is_volatile: bool, |
| 5693 | 5694 | alignment: u32, |
| 5694 | 5695 | child: type, |
| 5696 | ||
| 5697 | pub const Size = enum { | |
| 5698 | One, | |
| 5699 | Many, | |
| 5700 | Slice, | |
| 5701 | }; | |
| 5695 | 5702 | }; |
| 5696 | 5703 | |
| 5697 | 5704 | pub const Array = struct { |