Struct sway_libs::signed_integers::i8::I8
pub struct I8 {
/// The underlying unsigned `u8` type that makes up the signed `I8` type.
underlying: u8,
}
Expand description
The 8-bit signed integer type.
Additional Information
Represented as an underlying u8 value.
Actual value is underlying value minus 2 ^ 7
Max value is 2 ^ 7 - 1, min value is - 2 ^ 7
Fields
underlying: u8
The underlying unsigned u8
type that makes up the signed I8
type.
Implementations
pub fn indent() -> u8
pub fn indent() -> u8
The underlying value that corresponds to zero value.
Returns
- [u8] - The unsigned integer value representing a zero value.
Examples
use sway_libs::signed_integers::i8::I8;
fn foo() {
let zero = I8::indent();
assert(zero == 128u8);
}
pub fn bits() -> u64
pub fn bits() -> u64
The size of this type in bits.
Returns
- [u64] - The number of bits.
Examples
use sway_libs::signed_integers::i8::I8;
fn foo() {
let bits = I8::bits();
assert(bits == 8);
}
pub fn from_uint(underlying: u8) -> Self
pub fn from_uint(underlying: u8) -> Self
Helper function to get a signed I8
from an underlying u8
.
Arguments
underlying
: [u8] - Theu8
that will represent theI8
.
Returns
- [I8] - The newly created
I8
struct.
Examples
use sway_libs::signed_integers::i8::I8;
fn foo() {
let underlying = 1u8;
let i8 = I8::from_uint(underlying);
assert(i8.underlying() == underlying);
}
pub fn max() -> Self
pub fn max() -> Self
The largest value that can be represented by this integer type.
Returns
- [I8] - The newly created
I8
struct.
Examples
use sway_libs::signed_integers::i8::I8;
fn foo() {
let i8 = I8::max();
assert(i8.underlying() == u8::max());
}
pub fn min() -> Self
pub fn min() -> Self
The smallest value that can be represented by this integer type.
Returns
- [I8] - The newly created
I8
struct.
Examples
use sway_libs::signed_integers::i8::I8;
fn foo() {
let i8 = I8::new();
assert(i8.underlying() == u8::min());
}
pub fn neg_try_from(value: u8) -> Option<Self>
pub fn neg_try_from(value: u8) -> Option<Self>
Helper function to get a negative value of an unsigned number.
Arguments
value
: [u8] - The unsigned number to negate.
Returns
- [Option] - The newly created
I8
struct.
Examples
use sway_libs::signed_integers::i8::I8;
fn foo() {
let underlying = 1u8;
let i8 = I8::neg_try_from(underlying);
assert(i8.underlying() == 127u8);
}
pub fn new() -> Self
pub fn new() -> Self
Initializes a new, zeroed I8.
Additional Information
The zero value for I8 is 128u8.
Returns
- [I8] - The newly created
I8
struct.
Examples
use sway_libs::signed_integers::i8::I8;
fn foo() {
let i8 = I8::new();
assert(i8.underlying() == 128u8);
}
pub fn zero() -> Self
pub fn zero() -> Self
The zero value I8
.
Returns
- [I8] - The newly created
I8
type.
Examples
use sway_libs::signed_integers::i8::I8;
fn foo() {
let i8 = I8::zero();
assert(i8.underlying() == 128u8);
}
pub fn is_zero(self) -> bool
pub fn is_zero(self) -> bool
Returns whether a I8
is set to zero.
Returns
- [bool] -> True if the
I8
is zero, otherwise false.
Examples
use sway_libs::signed_integers::i8::I8;
fn foo() {
let i8 = I8::zero();
assert(i8.is_zero());
}
pub fn underlying(self) -> u8
pub fn underlying(self) -> u8
Returns the underlying u8
representing the I8
.
Returns
- [u8] - The
u8
representing theI8
.
Examples
use sway_libs::signed_integers::i8::I8;
fn foo() {
let i8 = I8::zero();
assert(i8.underlying() == 128u8);
}
Trait Implementations
impl AbiEncode for I8
impl AbiEncode for I8
pub fn abi_encode(self, buffer: Buffer) -> Buffer
impl AbiDecode for I8
impl AbiDecode for I8
pub fn abi_decode(refmut buffer: BufferReader) -> Self
impl Eq for I8
impl Eq for I8
pub fn eq(self, other: Self) -> bool
pub fn neq(self, other: Self) -> bool
pub fn neq(self, other: Self) -> bool
Evaluates if two values of the same type are not equal.
Additional Information
This function is inherited when eq()
is implemented.
Arguments
other
: [Self] - The value of the same type.
Returns
- [bool] -
true
if the two values are not equal, otherwisefalse
.
Examples
struct MyStruct {
val: u64,
}
impl Eq for MyStruct {
fn eq(self, other: Self) -> bool {
self.val == other.val
}
}
fn foo() {
let struct1 = MyStruct { val: 10 };
let struct2 = MyStruct { val: 2 };
let result = struct1 != struct2;
assert(result);
}
impl OrdEq for I8
impl OrdEq for I8
pub fn ge(self, other: Self) -> bool
pub fn ge(self, other: Self) -> bool
Evaluates if one value of the same type is greater or equal to than another.
Additional Information
This trait requires that the Ord
and Eq
traits are implemented.
Arguments
other
: [Self] - The value of the same type.
Returns
- [bool] -
true
ifself
is greater than or equal toother
, otherwisefalse
.
Examples
struct MyStruct {
val: u64,
}
impl Eq for MyStruct {
fn eq(self, other: Self) -> bool {
self.val == other.val
}
}
impl Ord for MyStruct {
fn gt(self, other: Self) -> bool {
self.val > other.val
}
}
impl OrdEq for MyStruct {}
fn foo() {
let struct1 = MyStruct { val: 10 };
let struct2 = MyStruct { val: 10 };
let result = struct1 >= struct2;
assert(result);
}
pub fn le(self, other: Self) -> bool
pub fn le(self, other: Self) -> bool
Evaluates if one value of the same type is less or equal to than another.
Additional Information
This trait requires that the Ord
and Eq
traits are implemented.
Arguments
other
: [Self] - The value of the same type.
Returns
- [bool] -
true
ifself
is less than or equal toother
, otherwisefalse
.
Examples
struct MyStruct {
val: u64,
}
impl Eq for MyStruct {
fn eq(self, other: Self) -> bool {
self.val == other.val
}
}
impl Ord for MyStruct {
fn lt(self, other: Self) -> bool {
self.val < other.val
}
}
impl OrdEq for MyStruct {}
fn foo() {
let struct1 = MyStruct { val: 10 };
let struct2 = MyStruct { val: 10 };
let result = struct1 <= struct2;
assert(result);
}
impl Divide for I8
impl Divide for I8
pub fn divide(self, divisor: Self) -> Self
pub fn divide(self, divisor: Self) -> Self
Divide a I8 by a I8. Panics if divisor is zero.
impl Multiply for I8
impl Multiply for I8
pub fn multiply(self, other: Self) -> Self
pub fn multiply(self, other: Self) -> Self
Multiply a I8 with a I8. Panics of overflow.
impl Subtract for I8
impl Subtract for I8
pub fn subtract(self, other: Self) -> Self
pub fn subtract(self, other: Self) -> Self
Subtract a I8 from a I8. Panics of overflow.