[][src]Struct rutie::Hash

pub struct Hash { /* fields omitted */ }

Hash

Methods

impl Hash[src]

pub fn new() -> Self[src]

Creates a new instance of empty Hash.

Examples

use rutie::{Hash, VM};

Hash::new();

Ruby:

{}

pub fn at<T: Object>(&self, key: &T) -> AnyObject[src]

Retrieves an AnyObject from element stored at key key.

Examples

use rutie::{Fixnum, Hash, Object, Symbol, VM};

let mut hash = Hash::new();

hash.store(Symbol::new("key"), Fixnum::new(1));

assert_eq!(hash.at(&Symbol::new("key")).try_convert_to::<Fixnum>(), Ok(Fixnum::new(1)));

Ruby:

hash = {}
hash[:key] = 1

hash[:key] == 1

pub fn store<K: Object, V: Object>(&mut self, key: K, value: V) -> AnyObject[src]

Associates the value with the key.

Both key and value must be types which implement Object trait.

Examples

use rutie::{Fixnum, Hash, Object, Symbol, VM};

let mut hash = Hash::new();

hash.store(Symbol::new("key"), Fixnum::new(1));

assert_eq!(hash.at(&Symbol::new("key")).try_convert_to::<Fixnum>(), Ok(Fixnum::new(1)));

Ruby:

hash = {}
hash[:key] = 1

hash[:key] == 1

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

Retrieves the length of the hash.

Examples

use rutie::{Hash, Fixnum, Symbol, VM};

let mut hash = Hash::new();

hash.store(Symbol::new("key1"), Fixnum::new(1));
assert_eq!(hash.length(), 1);

hash.store(Symbol::new("key2"), Fixnum::new(2));
assert_eq!(hash.length(), 2);

Ruby:

hash = {}

hash[:key1] = 1
hash.length == 1

hash[:key2] = 2
hash.length == 2

pub fn clear(&self)[src]

Removes all key-value pairs.

Examples

use rutie::{Hash, Fixnum, Symbol, VM};

let mut hash = Hash::new();

hash.store(Symbol::new("key1"), Fixnum::new(1));
hash.store(Symbol::new("key2"), Fixnum::new(2));
assert_eq!(hash.length(), 2);

hash.clear();
assert_eq!(hash.length(), 0);

Ruby:

hash = {}

hash[:key1] = 1
hash[:key2] = 2
hash.length == 2

hash.clear

hash.length == 0

pub fn delete<K: Object>(&mut self, key: K) -> AnyObject[src]

Deletes the key-value pair and returns the value from hash whose key is equal to key. If the key is not found, it returns nil.

key must be a type which implements the Object trait.

Examples

use rutie::{Fixnum, Hash, Object, Symbol, VM};

let mut hash = Hash::new();

hash.store(Symbol::new("key1"), Fixnum::new(1));
hash.store(Symbol::new("key2"), Fixnum::new(2));
assert_eq!(hash.length(), 2);

let deleted = hash.delete(Symbol::new("key2"));
assert_eq!(hash.length(), 1);
assert_eq!(deleted.try_convert_to::<Fixnum>(), Ok(Fixnum::new(2)));

Ruby:

hash = {}

hash[:key1] = 1
hash[:key2] = 2
hash.length == 2

deleted = hash.delete(:key2)

hash.length == 1
deleted == 2

pub fn each<F>(&self, closure: F) where
    F: FnMut(AnyObject, AnyObject), 
[src]

Runs a closure for each key and value pair.

Key and value have AnyObject type.

Examples

use rutie::{Fixnum, Hash, Object, Symbol, VM};

let mut hash = Hash::new();

hash.store(Symbol::new("first_key"), Fixnum::new(1));
hash.store(Symbol::new("second_key"), Fixnum::new(2));

let mut doubled_values: Vec<i64> = Vec::new();

hash.each(|_key, value| {
    if let Ok(value) = value.try_convert_to::<Fixnum>() {
        doubled_values.push(value.to_i64() * 2);
    }
});

assert_eq!(doubled_values, vec![2, 4]);

Ruby:

hash = {
  first_key: 1,
  second_key: 2
}

doubled_values = []

hash.each do |_key, value|
  doubled_values << [value * 2]
end

doubled_values == [2, 4]

Trait Implementations

impl Object for Hash[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 Hash[src]

impl From<Value> for Hash[src]

impl Into<Value> for Hash[src]

impl Into<AnyObject> for Hash[src]

impl Default for Hash[src]

impl Clone for Hash[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialEq<Hash> for Hash[src]

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

This method tests for !=.

impl Debug for Hash[src]

Auto Trait Implementations

impl Unpin for Hash

impl Send for Hash

impl Sync for Hash

impl RefUnwindSafe for Hash

impl UnwindSafe for Hash

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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]