Portability | non-portable |
---|---|
Stability | experimental |
Maintainer | Edward Kmett <[email protected]> |
Safe Haskell | Trustworthy |
Linear.V2
Description
2-D Vectors
Documentation
A 2-dimensional vector
>>>
pure 1 :: V2 Int
V2 1 1
>>>
V2 1 2 + V2 3 4
V2 4 6
>>>
V2 1 2 * V2 3 4
V2 3 8
>>>
sum (V2 1 2)
3
Constructors
V2 !a !a |
Instances
Monad V2 | |
Functor V2 | |
Typeable1 V2 | |
Applicative V2 | |
Foldable V2 | |
Traversable V2 | |
Generic1 V2 | |
Distributive V2 | |
Representable V2 | |
Traversable1 V2 | |
Foldable1 V2 | |
Apply V2 | |
Bind V2 | |
Additive V2 | |
Metric V2 | |
R1 V2 | |
R2 V2 | |
Trace V2 | |
Affine V2 | |
Num r => Coalgebra r (E V2) | |
Eq a => Eq (V2 a) | |
Fractional a => Fractional (V2 a) | |
Data a => Data (V2 a) | |
Num a => Num (V2 a) | |
Ord a => Ord (V2 a) | |
Read a => Read (V2 a) | |
Show a => Show (V2 a) | |
Ix a => Ix (V2 a) | |
Generic (V2 a) | |
Storable a => Storable (V2 a) | |
Ixed (V2 a) | |
Epsilon a => Epsilon (V2 a) | |
FunctorWithIndex (E V2) V2 | |
FoldableWithIndex (E V2) V2 | |
TraversableWithIndex (E V2) V2 |
A space that has at least 1 basis vector _x
.