pub fn at(
array: Uint8Array,
index index: Int,
) -> Result(Int, Nil)
pub fn copy_within_range(
array: Uint8Array,
to target: Int,
from start: Int,
up_to end: Int,
) -> Uint8Array
pub fn every(
in array: Uint8Array,
satisfying predicate: fn(Int) -> Bool,
) -> Bool
pub fn fill_range(
array: Uint8Array,
with value: Int,
from start: Int,
to end: Int,
) -> Uint8Array
pub fn find(
in array: Uint8Array,
one_that predicate: fn(Int) -> Bool,
) -> Result(Int, Nil)
pub fn find_index(
in array: Uint8Array,
one_that predicate: fn(Int) -> Bool,
) -> Result(Int, Nil)
pub fn find_last(
in array: Uint8Array,
one_that predicate: fn(Int) -> Bool,
) -> Result(Int, Nil)
pub fn find_last_index(
in array: Uint8Array,
one_that predicate: fn(Int) -> Bool,
) -> Result(Int, Nil)
pub fn for_each(
in array: Uint8Array,
run callback: fn(Int) -> b,
) -> Nil
pub fn from_base64(string: String) -> Result(Uint8Array, String)
pub fn from_hex(string: String) -> Result(Uint8Array, String)
pub fn from_length(length: Int) -> Result(Uint8Array, String)
pub fn from_list_mapped(
list: List(a),
with mapper: fn(a) -> Int,
) -> Uint8Array
pub fn includes(in array: Uint8Array, value value: Int) -> Bool
pub fn includes_from(
in array: Uint8Array,
value value: Int,
from index: Int,
) -> Bool
pub fn index_every(
in array: Uint8Array,
satisfying predicate: fn(Int, Int) -> Bool,
) -> Bool
pub fn index_find(
in array: Uint8Array,
one_that predicate: fn(Int, Int) -> Bool,
) -> Result(Int, Nil)
pub fn index_find_index(
in array: Uint8Array,
one_that predicate: fn(Int, Int) -> Bool,
) -> Result(Int, Nil)
pub fn index_find_last(
in array: Uint8Array,
one_that predicate: fn(Int, Int) -> Bool,
) -> Result(Int, Nil)
pub fn index_find_last_index(
in array: Uint8Array,
one_that predicate: fn(Int, Int) -> Bool,
) -> Result(Int, Nil)
pub fn index_for_each(
in array: Uint8Array,
run callback: fn(Int, Int) -> b,
) -> Nil
pub fn index_of(
in array: Uint8Array,
value value: Int,
) -> Result(Int, Nil)
pub fn index_of_from(
in array: Uint8Array,
value value: Int,
from index: Int,
) -> Result(Int, Nil)
pub fn index_reduce(
over array: Uint8Array,
from initial: a,
with callback: fn(a, Int, Int) -> a,
) -> a
pub fn index_reduce_right(
over array: Uint8Array,
from initial: a,
with callback: fn(a, Int, Int) -> a,
) -> a
pub fn index_some(
in array: Uint8Array,
satisfying predicate: fn(Int, Int) -> Bool,
) -> Bool
pub fn join(array: Uint8Array, with separator: String) -> String
pub fn last_index_of(
in array: Uint8Array,
value value: Int,
) -> Result(Int, Nil)
pub fn last_index_of_from(
in array: Uint8Array,
value value: Int,
from index: Int,
) -> Result(Int, Nil)
pub fn reduce(
over array: Uint8Array,
from initial: a,
with callback: fn(a, Int) -> a,
) -> a
pub fn reduce_right(
over array: Uint8Array,
from initial: a,
with callback: fn(a, Int) -> a,
) -> a
pub fn set_from_base64(
array: Uint8Array,
string: String,
) -> Result(#(Int, Int), String)
pub fn set_from_hex(
array: Uint8Array,
string: String,
) -> Result(#(Int, Int), String)
pub fn set_with_offset(
in array: Uint8Array,
values values: Uint8Array,
offset offset: Int,
) -> Result(Nil, String)
pub fn some(
in array: Uint8Array,
satisfying predicate: fn(Int) -> Bool,
) -> Bool