pub enum YieldValues<I> {
    Iter(I),
    Enumerator(Enumerator),
}
Expand description

Helper type for functions that either yield multiple values to a block or return an Enumerator.

I must implement Iterator<Item = T>, where T implements ArgList.

§Examples

use magnus::{
    block::{block_given, YieldValues},
    define_global_function, eval, method,
    prelude::*,
    rb_assert, RArray, Value,
};

fn count_to_3_abc(rb_self: Value) -> YieldValues<impl Iterator<Item = (u8, char)>> {
    if block_given() {
        YieldValues::Iter((1..=3).zip('a'..='c'))
    } else {
        YieldValues::Enumerator(rb_self.enumeratorize("count_to_3_abc", ()))
    }
}

define_global_function("count_to_3_abc", method!(count_to_3_abc, 0));

// call Ruby method with a block.
let a = RArray::new();
rb_assert!("count_to_3_abc {|i, c| a << [i, c]} == nil", a);
rb_assert!(r#"a == [[1, "a"], [2, "b"], [3, "c"]]"#, a);

// call Ruby method without a block.
let enumerator: Value = eval("count_to_3_abc").unwrap();

rb_assert!(r#"enumerator.next == [1, "a"]"#, enumerator);
rb_assert!(r#"enumerator.next == [2, "b"]"#, enumerator);

Variants§

§

Iter(I)

Yields I::Item to given block.

§

Enumerator(Enumerator)

Returns Enumerator from the method.

Auto Trait Implementations§

§

impl<I> Freeze for YieldValues<I>
where I: Freeze,

§

impl<I> RefUnwindSafe for YieldValues<I>
where I: RefUnwindSafe,

§

impl<I> Send for YieldValues<I>
where I: Send,

§

impl<I> Sync for YieldValues<I>
where I: Sync,

§

impl<I> Unpin for YieldValues<I>
where I: Unpin,

§

impl<I> UnwindSafe for YieldValues<I>
where I: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> ReturnValue for T
where T: ReturnValue,