C@n3      !"#$%&'()*+,-./012a(c) 2008 Alfonso Acosta, Oleg Kiselyov, Wolfgang Jeltsch and KTH's SAM group  BSD-style (see the file LICENSE)alfonso.acosta@gmail.com experimental non-portableNone 0<=IOQRT*hFixed-Sized Vector data type, indexed with type-level naturals, the first index for all vectors is 0*Cons operator, note it's not a constructorA FSVec with a single element&Build a vector from a list (CPS style)3Build a vector from a list (using Template Haskell)sBuild a vector from a list (unsafe version: The static/dynamic size of the list is checked to match at runtime)Build a vector from a list. Unlike unsafeVector, reallyunsafeVector doesn't have access to the static size of the list and thus cannot not check it against its dynamic size (which saves traversing the list at runtime to obtain the dynamic length).JTherefore, reallyUnsafeVector (the name is that long on purspose) can be used to gain some performance but may break the consistency of the size parameter if not handled with care (i.e. the size parameter can nolonger be checked statically and the fullfilment of function constraints is left to the programmers judgement).@Do not use reallyUnsafeVector unless you know what you're doing!lRead a vector (Note the the size of the vector string is checked to match the resulting type at runtime) Read a vector, CPS version. value-level length of a vector 'generic value-level length of a vector type-level version of length Transform Vector to a listCheck if a Vector is emptyAccess an element of a vectorReplace an element of a vector"Take the first element of a vector!Take the last element of a vector,Return all but the first element of a vector+Return all but the last element of a vector%Take the first i elements of a vector%Drop the first i elements of a vector The function  selects elements in the vector. The first argument gives the initial element, starting from zero, the second argument gives the stepsize between elements and the last argument gives the number of elements.)break a vector into subvectors of size n.Cadd an element at the end of a vector. (Inverse of '(+>)') Concatenate two vectors,Apply a function on all elements of a vector(Applies function pairwise on two vectors(Applies function pairwise on two vectorsUFolds a function from the right to the left over a vector using an initial value.UFolds a function from the left to the right over a vector using an initial value. (zip two vectors into a vector of tuples.!*unzip a vector of tuples into two vectors."+shift a value from the left into a vector. #+shift a value from the left into a vector. $^Rotate a vector to the left. Note that this fuctions does not change the size of a vector.%^Rotate a vector to the left. Note that this fuctions does not change the size of a vector.&.flatten a vector of vectors to a single vector'reverse a vector(generate a vector with a given number of elements starting from an initial element using a supplied function for the generation of elements.  FSVec> iterate d5 (+1) 1 "<1,2,3,4,5> :: Num a => FSVec D5 a)) behaves in the same way as (T, but starts with the application of the supplied function to the supplied value.  FSVec> generate d5 (+1) 1 #<2,3,4,5,6> :: Num a => FSVec D5 a*Fgenerates a vector with a given number of copies of the same element.  FSVec> copy d7 5 #<5,5,5,5,5,5,5> :: FSVec D7 Integer?3456  !"#$%&'()*789:;<=>?+,-./01+  !"#$%&'()*+  !"#$%&'()*=3456  !"#$%&'()*789:;<=>?+,-./01555a(c) 2008 Alfonso Acosta, Oleg Kiselyov, Wolfgang Jeltsch and KTH's SAM group  BSD-style (see the file LICENSE)alfonso.acosta@gmail.com experimental non-portableNone+  !"#$%&'()*@      !"#$%&'()*+,-./0123456789:;<=>?@AB/parameterized-data-0.1.6-H5RYtF0SDolKufGCEQhjaUData.Param.FSVec Data.ParamFSVecempty+> singleton vectorCPSvectorTH unsafeVectorreallyUnsafeVector readFSVec readFSVecCPSlength genericLengthlengthT fromVectornull!replaceheadlasttailinittakedropselectgroup<+++mapzipWithzipWith3foldlfoldrzipunzipshiftlshiftrrotlrotrconcatreverseiterategeneratecopy $fLiftFSVec$fTraversableFSVec$fFunctorFSVec$fFoldableFSVec $fReadFSVec $fShowFSVec $fDataFSVec $fEqFSVecunFSVeccFSVectFSVecliftVliftV2liftV3splitAtMunsafeFSVecCoerce undefSigEunsafeVectorCPS readFSVecListlexFSVec