[][src]Struct rutie::Array

pub struct Array { /* fields omitted */ }

Array

Methods

impl Array[src]

pub fn new() -> Self[src]

Creates a new instance of empty Array.

Examples

use rutie::{Array, VM};

Array::new();

Ruby:

[]

pub fn with_capacity(capacity: usize) -> Self[src]

Creates a new instance of empty Array with reserved space for capacity elements.

Examples

use rutie::{Array, Fixnum, VM};

let mut array = Array::with_capacity(2);

assert_eq!(array.length(), 0);

array.push(Fixnum::new(1));
array.push(Fixnum::new(2));

assert_eq!(array.length(), 2);

Ruby:

[]

pub fn length(&self) -> usize[src]

Retrieves the length of the array.

Examples

use rutie::{Array, Fixnum, VM};

let mut array = Array::new().push(Fixnum::new(1));

assert_eq!(array.length(), 1);

array.push(Fixnum::new(2));

assert_eq!(array.length(), 2);

Ruby:

array = [1]
array.length == 1

array << 2
array.length == 2

pub fn at(&self, index: i64) -> AnyObject[src]

Retrieves an AnyObject from the element at index position.

Examples

use rutie::{Array, Fixnum, Object, VM};

let array = Array::new().push(Fixnum::new(1));

assert_eq!(array.at(0).try_convert_to::<Fixnum>(), Ok(Fixnum::new(1)));

Ruby:

array = [1]

array[0] == 1

pub fn join(&self, separator: RString) -> RString[src]

Joins all elements of Array to Ruby String.

Examples

use rutie::{Array, RString, VM};

let array = Array::new()
    .push(RString::new_utf8("Hello"))
    .push(RString::new_utf8("World!"));

let joined_string = array.join(RString::new_utf8(", "));

assert_eq!(joined_string.to_str(), "Hello, World!");

Ruby:

array = ['Hello', 'World!']

joined_string = array.join(', ')

joined_string == 'Hello, World!'

pub fn push<T: Object>(&mut self, item: T) -> Self[src]

Pushes an object to Array.

Examples

use rutie::{Array, Fixnum, Object, VM};

let mut array = Array::new();

array.push(Fixnum::new(1));

assert_eq!(array.at(0).try_convert_to::<Fixnum>(), Ok(Fixnum::new(1)));

Ruby:

array = []
array << 1

array[0] == 1

pub fn store<T: Object>(&mut self, index: i64, item: T)[src]

Stores an object at index position.

Examples

use rutie::{Array, Fixnum, Object, VM};

let mut array = Array::new().push(Fixnum::new(1));

array.store(0, Fixnum::new(2));

assert_eq!(array.at(0).try_convert_to::<Fixnum>(), Ok(Fixnum::new(2)));

Ruby:

array = [1]
array[0] = 2

array[0] == 2

pub fn pop(&mut self) -> AnyObject[src]

Removes and returns the last element of the array.

Examples

use rutie::{Array, Fixnum, Object, VM};

let mut array = Array::new().push(Fixnum::new(1));

assert_eq!(array.pop().try_convert_to::<Fixnum>(), Ok(Fixnum::new(1)));

Ruby:

array = [1]

array.pop == 1

pub fn unshift<T: Object>(&mut self, item: T) -> Array[src]

Inserts item at the beggining of the array.

Examples

use rutie::{Array, Fixnum, Object, VM};

let mut array = Array::new().push(Fixnum::new(1));

array.unshift(Fixnum::new(2));

assert_eq!(array.at(0).try_convert_to::<Fixnum>(), Ok(Fixnum::new(2)));

Ruby:

array = [1]
array.unshift(2)

array[0] == 2

pub fn shift(&mut self) -> AnyObject[src]

Removes the first item of the array and returns it.

Examples

use rutie::{Array, Fixnum, Object, VM};

let mut array = Array::new().push(Fixnum::new(1)).push(Fixnum::new(2));

let item = array.shift();

assert_eq!(item.try_convert_to::<Fixnum>(), Ok(Fixnum::new(1)));
assert_eq!(array.at(0).try_convert_to::<Fixnum>(), Ok(Fixnum::new(2)));

Ruby:

array = [1, 2]

item = array.shift

item == 1
array[0] == 2

pub fn dup(&self) -> Array[src]

Creates a copy of the array.

Examples

use rutie::{Array, Fixnum, Object, VM};

let array = Array::new().push(Fixnum::new(1));
let copy = array.dup();

assert_eq!(array.at(0), copy.at(0));

Ruby:

array = [1]
copy = array.dup

array[0] == copy[0]

pub fn to_s(&self) -> RString[src]

Creates a string representation of the array.

Examples

use rutie::{Array, Fixnum, VM};

let array = Array::new().push(Fixnum::new(1)).push(Fixnum::new(2));

assert_eq!(array.to_s().to_str(), "[1, 2]");

Ruby:

array = [1, 2]

array.to_s == "[1, 2]"

pub fn reverse(&self) -> Array[src]

Returns a new array containing array's elements in reverse order.

Examples

use rutie::{Array, Fixnum, Object, VM};

let mut array = Array::new().push(Fixnum::new(1)).push(Fixnum::new(2));

let reversed_array = array.reverse();

assert_eq!(reversed_array.at(0).try_convert_to::<Fixnum>(), Ok(Fixnum::new(2)));
assert_eq!(reversed_array.at(1).try_convert_to::<Fixnum>(), Ok(Fixnum::new(1)));

Ruby:

array = [1, 2]

reversed_array = array.reverse

reversed_array[0] == 2
reversed_array[1] == 1

pub fn reverse_bang(&mut self) -> Array[src]

Reverses self in place.

Examples

use rutie::{Array, Fixnum, Object, VM};

let mut array = Array::new().push(Fixnum::new(1)).push(Fixnum::new(2));

array.reverse_bang();

assert_eq!(array.at(0).try_convert_to::<Fixnum>(), Ok(Fixnum::new(2)));
assert_eq!(array.at(1).try_convert_to::<Fixnum>(), Ok(Fixnum::new(1)));

Ruby:

array = [1, 2]

array.reverse!

array[0] == 2
array[1] == 1

pub fn concat(&mut self, other: &Array) -> Array[src]

Appends the elements of other array to self.

Examples

use rutie::{Array, Fixnum, Object, VM};

let mut array = Array::new().push(Fixnum::new(1));
let other = Array::new().push(Fixnum::new(2));

array.concat(&other);

assert_eq!(array.at(0).try_convert_to::<Fixnum>(), Ok(Fixnum::new(1)));
assert_eq!(array.at(1).try_convert_to::<Fixnum>(), Ok(Fixnum::new(2)));

Ruby:

array = [1]
other = [2]

array.concat(other)

array[0] == 1
array[1] == 2

pub fn sort(&self) -> Array[src]

Returns a new array created by sorting self.

Examples

use rutie::{Array, Fixnum, Object, VM};

let array = Array::new().push(Fixnum::new(2)).push(Fixnum::new(1));

let sorted_array = array.sort();

assert_eq!(sorted_array.at(0).try_convert_to::<Fixnum>(), Ok(Fixnum::new(1)));
assert_eq!(sorted_array.at(1).try_convert_to::<Fixnum>(), Ok(Fixnum::new(2)));

Ruby:

array = [2, 1]

sorted_array = array.sort

sorted_array[0] == 1
sorted_array[1] == 2

pub fn sort_bang(&mut self) -> Array[src]

Sorts the array in place.

Examples

use rutie::{Array, Fixnum, Object, VM};

let mut array = Array::new().push(Fixnum::new(2)).push(Fixnum::new(1));

array.sort_bang();

assert_eq!(array.at(0).try_convert_to::<Fixnum>(), Ok(Fixnum::new(1)));
assert_eq!(array.at(1).try_convert_to::<Fixnum>(), Ok(Fixnum::new(2)));

Ruby:

array = [2, 1]

array.sort!

array[0] == 1
array[1] == 2

pub fn to_enum(&self) -> Enumerator[src]

Sorts the array in place.

Examples

use rutie::{Array, Fixnum, Object, VM, VerifiedObject, Enumerator};

let enumerator = Array::new().push(Fixnum::new(2)).push(Fixnum::new(1)).to_enum();

assert!(Enumerator::is_correct_type(&enumerator), "incorrect type!");

Ruby:

enumerator = [2, 1].to_enum

Enumerator === enumerator

Trait Implementations

impl Object for Array[src]

fn class(&self) -> Class[src]

Returns a class of current object. Read more

fn singleton_class(&self) -> Class[src]

Returns a singleton class of current object. Read more

fn get_data<'a, T>(&'a self, wrapper: &'a dyn DataTypeWrapper<T>) -> &T[src]

Gets an immutable reference to the Rust structure which is wrapped into a Ruby object. Read more

fn get_data_mut<'a, T>(
    &'a mut self,
    wrapper: &'a dyn DataTypeWrapper<T>
) -> &mut T
[src]

Gets a mutable reference to the Rust structure which is wrapped into a Ruby object.

fn define<F: Fn(&mut Self)>(&mut self, f: F) -> &Self[src]

Wraps calls to the object. Read more

fn define_method<I: Object, O: Object>(
    &mut self,
    name: &str,
    callback: Callback<I, O>
)
[src]

Defines an instance method for the given class or object. Read more

fn define_private_method<I: Object, O: Object>(
    &mut self,
    name: &str,
    callback: Callback<I, O>
)
[src]

Defines a private instance method for the given class or object. Read more

fn define_singleton_method<I: Object, O: Object>(
    &mut self,
    name: &str,
    callback: Callback<I, O>
)
[src]

Defines a class method for given class or singleton method for object. Read more

fn def<I: Object, O: Object>(&mut self, name: &str, callback: Callback<I, O>)[src]

An alias for define_method (similar to Ruby syntax def some_method).

fn def_private<I: Object, O: Object>(
    &mut self,
    name: &str,
    callback: Callback<I, O>
)
[src]

An alias for define_private_method (similar to Ruby syntax private def some_method).

fn def_self<I: Object, O: Object>(
    &mut self,
    name: &str,
    callback: Callback<I, O>
)
[src]

An alias for define_singleton_method (similar to Ruby def self.some_method).

unsafe fn send(&self, method: &str, arguments: &[AnyObject]) -> AnyObject[src]

Calls a given method on an object similarly to Ruby Object#send method Read more

fn equals<T: Object>(&self, other: &T) -> bool[src]

Alias for Ruby's == Read more

fn case_equals<T: Object>(&self, other: &T) -> bool[src]

Alias for Ruby's === Read more

fn is_eql<T: Object>(&self, other: &T) -> bool[src]

Alias for Ruby's eql? Read more

fn is_equal<T: Object>(&self, other: &T) -> bool[src]

Alias for Ruby's equal? Read more

fn respond_to(&self, method: &str) -> bool[src]

Checks whether the object responds to given method Read more

fn protect_send(
    &self,
    method: &str,
    arguments: &[AnyObject]
) -> Result<AnyObject, AnyException>
[src]

protect_send returns Result<AnyObject, AnyObject> Read more

fn protect_public_send(
    &self,
    method: &str,
    arguments: &[AnyObject]
) -> Result<AnyObject, AnyException>
[src]

protect_public_send returns Result<AnyObject, AnyObject> Read more

fn is_nil(&self) -> bool[src]

Checks whether the object is nil Read more

fn to_any_object(&self) -> AnyObject[src]

Converts struct to AnyObject Read more

fn instance_variable_get(&self, variable: &str) -> AnyObject[src]

Gets an instance variable of object Read more

fn instance_variable_set<T: Object>(
    &mut self,
    variable: &str,
    value: T
) -> AnyObject
[src]

Sets an instance variable for object Read more

fn is_frozen(&self) -> bool[src]

Returns the freeze status of the object. Read more

fn freeze(&mut self) -> Self[src]

Prevents further modifications to the object. Read more

unsafe fn to<T: Object>(&self) -> T[src]

Unsafely casts current object to the specified Ruby type Read more

fn try_convert_to<T: VerifiedObject>(&self) -> Result<T, AnyException>[src]

Safely casts current object to the specified Ruby type Read more

fn ty(&self) -> ValueType[src]

Determines the value type of the object Read more

impl VerifiedObject for Array[src]

impl Default for Array[src]

impl PartialEq<Array> for Array[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl From<Value> for Array[src]

impl Into<Value> for Array[src]

impl Into<AnyObject> for Array[src]

impl IntoIterator for Array[src]

Allows Arrays to be iterable in Rust.

Examples

use rutie::{Array, Fixnum, Object, VM};

let mut array = Array::new()
    .push(Fixnum::new(1))
    .push(Fixnum::new(2))
    .push(Fixnum::new(3));

let mut sum: i64 = 0;

for item in array.into_iter() {
    sum += item.try_convert_to::<Fixnum>().unwrap().to_i64();
}

assert_eq!(sum, 6);

type Item = AnyObject

The type of the elements being iterated over.

type IntoIter = ArrayIterator

Which kind of iterator are we turning this into?

impl Debug for Array[src]

impl FromIterator<AnyObject> for Array[src]

Converts an iterator into Array.

Examples

use rutie::{Array, Fixnum, Object, VM};

let array: Array = (1..6)
    .map(|num| num * 2)
    .map(|num| Fixnum::new(num).to_any_object())
    .collect();

assert_eq!(array.length(), 5);

for i in 0..5 {
    let expected_number = (i + 1) * 2;

    assert_eq!(array.at(i).try_convert_to::<Fixnum>().unwrap().to_i64(), expected_number);
}

Auto Trait Implementations

impl Send for Array

impl Unpin for Array

impl Sync for Array

impl RefUnwindSafe for Array

impl UnwindSafe for Array

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]