Struct ruru::Hash [] [src]

pub struct Hash { /* fields omitted */ }

Hash

Methods

impl Hash
[src]

Creates a new instance of empty Hash.

Examples

use ruru::{Hash, VM};

Hash::new();

Ruby:

{}

Retrieves an AnyObject from element stored at key key.

Examples

use ruru::{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

Associates the value with the key.

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

Examples

use ruru::{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

Retrieves the length of the hash.

Examples

use ruru::{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

Runs a closure for each key and value pair.

Key and value have AnyObject type.

Examples

use ruru::{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 Debug for Hash
[src]

Formats the value using the given formatter.

impl PartialEq for Hash
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<Value> for Hash
[src]

Performs the conversion.

impl Object for Hash
[src]

Returns internal value of current object. Read more

Returns a class of current object. Read more

Returns a singleton class of current object. Read more

Gets a Rust structure that is wrapped into a Ruby object. Read more

Wraps calls to the object. Read more

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

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

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

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

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

Checks whether the object responds to given method Read more

Checks whether the object is nil Read more

Converts struct to AnyObject Read more

Gets an instance variable of object Read more

Sets an instance variable for object Read more

Returns the freeze status of the object. Read more

Prevents further modifications to the object. Read more

Unsafely casts current object to the specified Ruby type Read more

Safely casts current object to the specified Ruby type Read more

Determines the value type of the object Read more

impl VerifiedObject for Hash
[src]