Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Some types in signature refinements
  • Loading branch information
lizmat committed Dec 17, 2018
1 parent f0d6bb8 commit 3660283
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions doc/Type/Blob.pod6
Expand Up @@ -233,7 +233,7 @@ C<LittleEndian> and C<BigEndian>.
Defined as:
method read-uint8(blob8:D: int $offset, $endian = NativeEndian --> uint)
method read-uint8(blob8:D: uint $pos, $endian = NativeEndian --> uint)
Returns an unsigned native integer value for the byte at the given position.
The C<$endian> parameter has no meaning, but is available for consistency.
Expand All @@ -242,7 +242,7 @@ The C<$endian> parameter has no meaning, but is available for consistency.
Defined as:
method read-int8(blob8:D: int $offset, $endian = NativeEndian --> int)
method read-int8(blob8:D: uint $pos, $endian = NativeEndian --> int)
Returns a native C<int> value for the byte at the given position.
The C<$endian> parameter has no meaning, but is available for consistency.
Expand All @@ -251,7 +251,7 @@ The C<$endian> parameter has no meaning, but is available for consistency.
Defined as:
method read-uint16(blob8:D: int $offset, $endian = NativeEndian --> uint)
method read-uint16(blob8:D: uint $pos, $endian = NativeEndian --> uint)
Returns a native C<uint> value for the B<two> bytes starting at the
given position.
Expand All @@ -260,7 +260,7 @@ given position.
Defined as:
method read-int16(blob8:D: int $offset, $endian = NativeEndian --> int)
method read-int16(blob8:D: uint $pos, $endian = NativeEndian --> int)
Returns a native C<int> value for the B<two> bytes starting at the given
position.
Expand All @@ -269,7 +269,7 @@ position.
Defined as:
method read-uint32(blob8:D: int $offset, $endian = NativeEndian --> uint)
method read-uint32(blob8:D: uint $pos, $endian = NativeEndian --> uint)
Returns a native C<uint> value for the B<four> bytes starting at the
given position.
Expand All @@ -278,7 +278,7 @@ given position.
Defined as:
method read-int32(blob8:D: int $offset, $endian = NativeEndian --> int)
method read-int32(blob8:D: uint $pos, $endian = NativeEndian --> int)
Returns a native C<int> value for the B<four> bytes starting at the given
position.
Expand All @@ -287,7 +287,7 @@ position.
Defined as:
method read-uint64(blob8:D: int $offset, $endian = NativeEndian --> UInt)
method read-uint64(blob8:D: uint $pos, $endian = NativeEndian --> UInt:D)
Returns an unsigned integer value for the B<eight> bytes starting at the
given position.
Expand All @@ -296,7 +296,7 @@ given position.
Defined as:
method read-int64(blob8:D: int $offset, $endian = NativeEndian --> int)
method read-int64(blob8:D: uint $pos, $endian = NativeEndian --> int)
Returns a native C<int> value for the B<eight> bytes starting at the given
position.
Expand All @@ -305,7 +305,7 @@ position.
Defined as:
method read-uint128(blob8:D: int $offset, $endian = NativeEndian --> UInt)
method read-uint128(blob8:D: uint $pos, $endian = NativeEndian --> UInt:D)
Returns an unsigned integer value for the B<sixteen> bytes starting at the
given position.
Expand All @@ -314,7 +314,7 @@ given position.
Defined as:
method read-int128(blob8:D: int $offset, $endian = NativeEndian --> Int)
method read-int128(blob8:D: uint $pos, $endian = NativeEndian --> Int:D)
Returns an integer value for the B<sixteen> bytes starting at the given
position.
Expand All @@ -323,7 +323,7 @@ position.
Defined as:
method read-num32(blob8:D: int $offset, $endian = NativeEndian --> int)
method read-num32(blob8:D: uint $pos, $endian = NativeEndian --> int)
Returns a native C<num> value for the B<four> bytes starting at the given
position.
Expand All @@ -332,7 +332,7 @@ position.
Defined as:
method read-num64(blob8:D: int $offset, $endian = NativeEndian --> int)
method read-num64(blob8:D: uint $pos, $endian = NativeEndian --> int)
Returns a native C<num> value for the B<eight> bytes starting at the given
position.
Expand Down

0 comments on commit 3660283

Please sign in to comment.