Struct yksom::vm::objects::NormalArray [−][src]
pub struct NormalArray { /* fields omitted */ }Implementations
impl NormalArray[src]
pub fn new(vm: &VM, len: usize) -> Val[src]
pub fn from_vec(v: Vec<Val>) -> Val[src]
pub unsafe fn alloc<F>(len: usize, init: F) -> Val where
F: FnOnce(*mut Val), [src]
F: FnOnce(*mut Val),
Create a new NormalArray with a backing store of len elements. init will be called
with a pointer to the uninitialised backing store. After init completes, the backing
store will be considered fully initialised: failure to fully initialise it causes undefined
behaviour.
Trait Implementations
impl Array for NormalArray[src]
fn at(self: Gc<Self>, vm: &VM, idx: usize) -> Result<Val, Box<VMError>>[src]
unsafe fn unchecked_at(self: Gc<Self>, idx: usize) -> Val[src]
fn at_put(
self: Gc<Self>,
vm: &mut VM,
idx: usize,
val: Val
) -> Result<(), Box<VMError>>[src]
self: Gc<Self>,
vm: &mut VM,
idx: usize,
val: Val
) -> Result<(), Box<VMError>>
fn iter(self: Gc<Self>) -> ArrayIterator[src]
impl Debug for NormalArray[src]
impl !NoTrace for NormalArray[src]
impl NotUnboxable for NormalArray[src]
impl Obj for NormalArray[src]
fn dyn_objtype(self: Gc<Self>) -> ObjType[src]
fn get_class(self: Gc<Self>, vm: &mut VM) -> Val[src]
fn to_array(self: Gc<Self>) -> Result<Gc<dyn Array>, Box<VMError>>[src]
fn hashcode(self: Gc<Self>) -> u64[src]
fn length(self: Gc<Self>) -> usize[src]
fn to_strval(self: Gc<Self>, _: &mut VM) -> Result<Val, Box<VMError>> where
Self: Send, [src]
Self: Send,
fn num_inst_vars(self: Gc<Self>, _: &VM) -> usize where
Self: Send, [src]
Self: Send,
fn inst_var_at(self: Gc<Self>, vm: &VM, i: usize) -> Result<Val, Box<VMError>> where
Self: Send, [src]
Self: Send,
fn inst_var_at_put(
self: Gc<Self>,
vm: &VM,
i: usize,
v: Val
) -> Result<(), Box<VMError>> where
Self: Send, [src]
self: Gc<Self>,
vm: &VM,
i: usize,
v: Val
) -> Result<(), Box<VMError>> where
Self: Send,
unsafe fn unchecked_inst_var_get(self: Gc<Self>, _: &VM, _: usize) -> Val where
Self: Send, [src]
Self: Send,
unsafe fn unchecked_inst_var_set(self: Gc<Self>, _: &VM, _: usize, _: Val) where
Self: Send, [src]
Self: Send,
fn add(self: Gc<Self>, _: &mut VM, _: Val) -> Result<Val, Box<VMError>> where
Self: Send, [src]
Self: Send,
fn and(self: Gc<Self>, _: &mut VM, _: Val) -> Result<Val, Box<VMError>> where
Self: Send, [src]
Self: Send,
fn div(self: Gc<Self>, _: &mut VM, _: Val) -> Result<Val, Box<VMError>> where
Self: Send, [src]
Self: Send,
fn double_div(self: Gc<Self>, _: &mut VM, _: Val) -> Result<Val, Box<VMError>> where
Self: Send, [src]
Self: Send,
fn modulus(self: Gc<Self>, _: &mut VM, _: Val) -> Result<Val, Box<VMError>> where
Self: Send, [src]
Self: Send,
fn mul(self: Gc<Self>, _: &mut VM, _: Val) -> Result<Val, Box<VMError>> where
Self: Send, [src]
Self: Send,
fn remainder(self: Gc<Self>, _: &mut VM, _: Val) -> Result<Val, Box<VMError>> where
Self: Send, [src]
Self: Send,
fn shl(self: Gc<Self>, _: &mut VM, _: Val) -> Result<Val, Box<VMError>> where
Self: Send, [src]
Self: Send,
fn shr(self: Gc<Self>, _: &mut VM, _: Val) -> Result<Val, Box<VMError>> where
Self: Send, [src]
Self: Send,
fn sqrt(self: Gc<Self>, _: &mut VM) -> Result<Val, Box<VMError>> where
Self: Send, [src]
Self: Send,
fn sub(self: Gc<Self>, _: &mut VM, _: Val) -> Result<Val, Box<VMError>> where
Self: Send, [src]
Self: Send,
fn xor(self: Gc<Self>, _: &mut VM, _: Val) -> Result<Val, Box<VMError>> where
Self: Send, [src]
Self: Send,
fn ref_equals(
self: Gc<Self>,
vm: &mut VM,
other: Val
) -> Result<Val, Box<VMError>> where
Self: Send, [src]
self: Gc<Self>,
vm: &mut VM,
other: Val
) -> Result<Val, Box<VMError>> where
Self: Send,
fn equals(self: Gc<Self>, _: &mut VM, _: Val) -> Result<Val, Box<VMError>> where
Self: Send, [src]
Self: Send,
fn not_equals(self: Gc<Self>, _: &mut VM, _: Val) -> Result<Val, Box<VMError>> where
Self: Send, [src]
Self: Send,
fn greater_than(self: Gc<Self>, _: &mut VM, _: Val) -> Result<Val, Box<VMError>> where
Self: Send, [src]
Self: Send,
fn greater_than_equals(
self: Gc<Self>,
_: &mut VM,
_: Val
) -> Result<Val, Box<VMError>> where
Self: Send, [src]
self: Gc<Self>,
_: &mut VM,
_: Val
) -> Result<Val, Box<VMError>> where
Self: Send,
fn less_than(self: Gc<Self>, _: &mut VM, _: Val) -> Result<Val, Box<VMError>> where
Self: Send, [src]
Self: Send,
fn less_than_equals(
self: Gc<Self>,
_: &mut VM,
_: Val
) -> Result<Val, Box<VMError>> where
Self: Send, [src]
self: Gc<Self>,
_: &mut VM,
_: Val
) -> Result<Val, Box<VMError>> where
Self: Send,
impl StaticObjType for NormalArray[src]
fn static_objtype() -> ObjType[src]
Auto Trait Implementations
impl RefUnwindSafe for NormalArray
impl Send for NormalArray
impl Sync for NormalArray
impl Unpin for NormalArray
impl UnwindSafe for NormalArray
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
U: TryFrom<T>,