Struct arrayfire::Seq [] [src]

#[repr(C)]
pub struct Seq<T> { /* fields omitted */ }

Sequences are used for indexing Arrays

Methods

impl<T: Copy> Seq<T>
[src]

Create a Seq that goes from begin to end at a step size of step

Get begin index of Seq

Get end index of Seq

Get step size of Seq

Trait Implementations

impl<T: Copy> Indexable for Seq<T> where
    c_double: From<T>, 
[src]

Enables Seq to be used to index another Array

This is used in functions index_gen and assign_gen

Set indexing object for a given dimension Read more

impl<T: Copy> Copy for Seq<T>
[src]

impl<T: Clone> Clone for Seq<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: One + Zero> Default for Seq<T>
[src]

Default Seq spans all the elements along a dimension

Returns the "default value" for a type. Read more

impl<T: Display> Display for Seq<T>
[src]

Enables use of Seq with {} format in print statements

Formats the value using the given formatter. Read more