Keyboard shortcuts

Press or to navigate between chapters

Press ? to show this help

Press Esc to hide this help

u128_array_slice

Returns the slice of an array.

Arguments

  • arr - The array to slice.
  • begin - The index to start the slice at.
  • len - The length of the slice.

Returns

  • Array<u128> - The slice of the array.

Fully qualified path: alexandria_bytes::utils::u128_array_slice

pub fn u128_array_slice(src: @Array<u128>, mut begin: u32, len: u32) -> Array<u128>