Enum brassfibre::prelude::Array [] [src]

pub enum Array {
    Int64Array(NullVec<i64>),
    Int32Array(NullVec<i32>),
    Int16Array(NullVec<i16>),
    Int8Array(NullVec<i8>),
    IsizeArray(NullVec<isize>),
    UInt64Array(NullVec<u64>),
    UInt32Array(NullVec<u32>),
    UInt16Array(NullVec<u16>),
    UInt8Array(NullVec<u8>),
    UsizeArray(NullVec<usize>),
    Float64Array(NullVec<f64>),
    Float32Array(NullVec<f32>),
    BoolArray(NullVec<bool>),
    StringArray(NullVec<String>),
}

Generic array which can contain NullVec of primitive types.

Variants

Nullable i64 array

Nullable i32 array

Nullable i16 array

Nullable i8 array

Nullable isize array

Nullable u64 array

Nullable u32 array

Nullable u16 array

Nullable u8 array

Nullable usize array

Nullable f64 array

Nullable f32 array

Nullable bool array

Nullable String array

Methods

impl Array
[src]

Trait Implementations

impl Clone for Array
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl NumericAggregation for Array
[src]

Return mean of contained values.

Return variance of contained values.

Return unbiased variance of contained values.

Return standard deviation of contained values.

Return unbiased standard deviation of contained values.

impl Append for Array
[src]

impl From<Vec<usize>> for Array
[src]

Performs the conversion.

impl From<NullVec<u16>> for Array
[src]

Performs the conversion.

impl From<Vec<isize>> for Array
[src]

Performs the conversion.

impl From<NullVec<i64>> for Array
[src]

Performs the conversion.

impl From<NullVec<i8>> for Array
[src]

Performs the conversion.

impl From<NullVec<String>> for Array
[src]

Performs the conversion.

impl From<NullVec<u8>> for Array
[src]

Performs the conversion.

impl From<NullVec<i16>> for Array
[src]

Performs the conversion.

impl From<NullVec<i32>> for Array
[src]

Performs the conversion.

impl From<Vec<u16>> for Array
[src]

Performs the conversion.

impl From<NullVec<f32>> for Array
[src]

Performs the conversion.

impl From<Vec<u32>> for Array
[src]

Performs the conversion.

impl From<Vec<u8>> for Array
[src]

Performs the conversion.

impl From<Vec<i32>> for Array
[src]

Performs the conversion.

impl From<NullVec<u32>> for Array
[src]

Performs the conversion.

impl From<NullVec<f64>> for Array
[src]

Performs the conversion.

impl From<Vec<f32>> for Array
[src]

Performs the conversion.

impl From<Vec<i64>> for Array
[src]

Performs the conversion.

impl From<NullVec<bool>> for Array
[src]

Performs the conversion.

impl From<NullVec<usize>> for Array
[src]

Performs the conversion.

impl From<NullVec<u64>> for Array
[src]

Performs the conversion.

impl From<Vec<i16>> for Array
[src]

Performs the conversion.

impl From<Vec<i8>> for Array
[src]

Performs the conversion.

impl From<Vec<f64>> for Array
[src]

Performs the conversion.

impl From<Vec<Scalar>> for Array
[src]

Performs the conversion.

impl From<Vec<u64>> for Array
[src]

Performs the conversion.

impl<'a> From<Vec<&'a str>> for Array
[src]

Performs the conversion.

impl From<Vec<bool>> for Array
[src]

Performs the conversion.

impl From<Vec<String>> for Array
[src]

Performs the conversion.

impl From<NullVec<isize>> for Array
[src]

Performs the conversion.

impl Stringify for Array
[src]

impl Slicer for Array
[src]

Return the length of myself

Return a single element specified with the location Read more

Return a single element specified with the location

Return multiple elements specified with the locations Read more

Return multiple elements specified with the locations

Return multiple elements specified with the locations Read more

Return multilpe elements specified with bool flags

Return multiple elements specified with the locations Read more

Return multiple elements specified with the locations

Return multiple elements specified with the locations Read more

impl ComparisonAggregation for Array
[src]

Return min of contained values.

Return max of contained values.

impl BasicAggregation for Array
[src]

Return sum of contained values.

Return count of contained values.

impl PartialEq<Array> for Array
[src]

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

This method tests for !=.

impl Debug for Array
[src]

Formats the value using the given formatter.