Struct naan::impls::vec::hkt::Vec

source ·
pub struct Vec;
Expand description

std::vec::Vec lifted to an HKT1

(Kind Type -> Type)

Trait Implementations§

source§

impl<A> Alt<Vec, A> for Vec<A>

source§

fn alt(self, b: Self) -> Self

See Alt
source§

impl<A> Applicative<Vec, A> for Vec<A>

source§

fn pure(a: A) -> Vec<A>

Lift A to F<A>
source§

fn append_one(self, a: A) -> Selfwhere Self: Sized + Semigroup,

Append a single A to F<A>
source§

impl<AB> Apply<Vec, AB> for Vec<AB>

source§

fn apply_with<A, B, Cloner>( self, a: <Vec as HKT1>::T<A>, cloner: Cloner ) -> <Vec as HKT1>::T<B>where AB: F1<A, Ret = B>, Cloner: for<'a> F1<&'a A, Ret = A>,

Apply the function A -> B contained in Self (F<A -> B>) to an instance of F<A> to get F<B>.
source§

fn apply<A, B>(self, a: F::T<A>) -> F::T<B>where Self: Sized, AB: F1<A, Ret = B>, A: Clone,

See [Apply.apply_with]
source§

impl<A> Foldable<Vec, A> for Vec<A>

source§

fn foldl<B, BAB>(self, f: BAB, b: B) -> Bwhere BAB: F2<B, A, Ret = B>,

Fold the data structure from left -> right
source§

fn foldr<B, ABB>(self, f: ABB, b: B) -> Bwhere ABB: F2<A, B, Ret = B>,

Fold the data structure from right -> left
source§

fn foldl_ref<'a, B, BAB>(&'a self, f: BAB, b: B) -> Bwhere BAB: F2<B, &'a A, Ret = B>, A: 'a,

Fold the data structure from left -> right
source§

fn foldr_ref<'a, B, ABB>(&'a self, f: ABB, b: B) -> Bwhere ABB: F2<&'a A, B, Ret = B>, A: 'a,

Fold the data structure from right -> left
source§

fn fold_map<AB, B>(self, f: AB) -> Bwhere Self: Sized, AB: F1<A, Ret = B>, B: Monoid,

Fold the data structure, accumulating the values into a Monoid. Read more
source§

fn contains<'a>(&'a self, a: &'a A) -> boolwhere &'a A: PartialEq, A: 'a,

Test if the structure contains a value a Read more
source§

fn not_contains<'a>(&'a self, a: &'a A) -> boolwhere &'a A: PartialEq, A: 'a,

Test if the structure does not contain a value a Read more
source§

fn any<'a, P>(&'a self, f: P) -> boolwhere P: F1<&'a A, Ret = bool>, A: 'a,

Test if any element in the structure satisfies a predicate f Read more
source§

fn all<'a, P>(&'a self, f: P) -> boolwhere P: F1<&'a A, Ret = bool>, A: 'a,

Test if every element in the structure satisfies a predicate f Read more
source§

fn length(&self) -> usize

Get the number of elements contained within the structure Read more
source§

fn is_empty(&self) -> bool

Test if the structure is empty Read more
source§

fn find_map<AB, B>(self, f: AB) -> Option<B>where Self: Sized, AB: F1<A, Ret = Option<B>>,

Fold values until a match is found
source§

fn find<P>(self, f: P) -> Option<A>where Self: Sized, P: for<'a> F1<&'a A, Ret = bool>,

Fold values until a match is found
source§

impl<A> FoldableIndexed<Vec, usize, A> for Vec<A>

source§

fn foldr_idx<B, ABB>(self, f: ABB, b: B) -> Bwhere ABB: F3<usize, A, B, Ret = B>,

CHECK: Enumerate yields indexes (not the number of iterations) when going backwards in a double ended iterator

use naan::prelude::*;

vec![0, 1, 2].foldl_idx(|(), ix, val| assert_eq!(ix, val), ());
vec![0, 1, 2].foldr_idx(|ix, val, ()| assert_eq!(ix, val), ());
source§

fn foldl_idx<B, BAB>(self, f: BAB, b: B) -> Bwhere BAB: F3<B, usize, A, Ret = B>,

Fold the data structure from left -> right
source§

fn foldl_idx_ref<'a, B, BAB>(&'a self, f: BAB, b: B) -> Bwhere BAB: F3<B, usize, &'a A, Ret = B>, A: 'a,

Fold the data structure from left -> right
source§

fn foldr_idx_ref<'a, B, ABB>(&'a self, f: ABB, b: B) -> Bwhere ABB: F3<usize, &'a A, B, Ret = B>, A: 'a,

Fold the data structure from right -> left
source§

impl<A> Functor<Vec, A> for Vec<A>

source§

fn fmap<AB, B>(self, f: AB) -> Vec<B>where AB: F1<A, Ret = B>,

Use a function from A -> B to transform an F<A> to an F<B>.
source§

impl HKT1 for Vec

§

type T<A> = Vec<A, Global>

The generic type
source§

impl<A> Monad<Vec, A> for Vec<A>

source§

fn bind<B, AMB>(self, f: AMB) -> Vec<B>where AMB: F1<A, Ret = Vec<B>>,

See Monad
source§

fn flatten<AA>(self) -> M::T<AA>where Self: Sized, M: HKT1<T<AA> = A> + HKT1<T<<M as HKT1>::T<AA>> = Self>,

Flatten a nested Monad Read more
source§

impl<A> Plus<Vec, A> for Vec<A>

source§

fn empty() -> <Vec as HKT1>::T<A>

See Plus
source§

impl<A, B> Traversable<Vec, A, B, Curry2<fn(_: B, _: Vec<B, Global>) -> Vec<B, Global>, Just<B>, Nothing<Vec<B, Global>>, Vec<B, Global>>> for Vec<A>

source§

fn traversem1<Ap, AtoApOfB>(self, f: AtoApOfB) -> Ap::T<Vec<B>>where Ap: HKT1, Self: Foldable<Vec, A>, Ap::T<B>: Applicative<Ap, B> + ApplyOnce<Ap, B>, Ap::T<append1<B>>: Applicative<Ap, append1<B>> + ApplyOnce<Ap, append1<B>>, Ap::T<Vec<B>>: Applicative<Ap, Vec<B>> + ApplyOnce<Ap, Vec<B>>, AtoApOfB: F1<A, Ret = Ap::T<B>>, Vec: HKT1<T<A> = Self>,

Traverse a structure with 0 or more elements, collecting into an Applicative of 0 or 1 elements. Read more
source§

fn traversemm<Ap, AtoApOfB>(self, f: AtoApOfB) -> Ap::T<Vec<B>>where Ap: HKT1, Self: Foldable<Vec, A>, B: Clone, Ap::T<B>: Applicative<Ap, B>, Ap::T<append1<B>>: Applicative<Ap, append1<B>>, Ap::T<Vec<B>>: Applicative<Ap, Vec<B>>, AtoApOfB: F1<A, Ret = Ap::T<B>>, Vec: HKT1<T<A> = Self>,

Traverse a structure with 0 or more elements, collecting into an Applicative of 0 or more elements.
source§

fn traverse<Ap, AtoApOfB>(self, f: AtoApOfB) -> Ap::T<F::T<B>>where Ap: HKT1, Self: Sized + Foldable<F, A>, Ap::T<B>: Applicative<Ap, B> + ApplyOnce<Ap, B>, Ap::T<TF>: Applicative<Ap, TF> + ApplyOnce<Ap, TF>, Ap::T<F::T<B>>: Applicative<Ap, F::T<B>> + ApplyOnce<Ap, F::T<B>>, AtoApOfB: F1<A, Ret = Ap::T<B>>, F: HKT1<T<A> = Self>,

Auto Trait Implementations§

§

impl RefUnwindSafe for Vec

§

impl Send for Vec

§

impl Sync for Vec

§

impl Unpin for Vec

§

impl UnwindSafe for Vec

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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<F, A, TF, T> Sequence<F, A, TF> for T

source§

fn sequence<Ap>(self) -> Ap::T<F::T<A>>where Self: Sized + Traversable<F, Ap::T<A>, A, TF> + Foldable<F, Ap::T<A>>, Ap: HKT1, Ap::T<A>: Applicative<Ap, A> + ApplyOnce<Ap, A>, Ap::T<TF>: Applicative<Ap, TF> + ApplyOnce<Ap, TF>, Ap::T<F::T<A>>: Applicative<Ap, F::T<A>> + ApplyOnce<Ap, F::T<A>>, F: HKT1<T<Ap::T<A>> = Self>,

source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.