!4      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~(c) 2019 Emily Pillmore BSD-style$Emily Pillmore <emilypi@cohomolo.gy> ExperimentalDataTypeable, CPPNone 27HMSVXa=nonempty-vector is a thin wrapper around y that witnesses an API requiring non-empty construction, initialization, and generation of non-empty vectors by design.aA newtype wrapper was chosen so that no new pointer indirection is introduced when working with ;s, and all performance characteristics inherited from the  API still apply.nonempty-vectorO(1) Length.nonempty-vectorO(1)V First element. Since head is gauranteed, bounds checks are bypassed by deferring to  unsafeHead.nonempty-vectorO(1)_ Last element. Since a last element is gauranteed, bounds checks are bypassed by deferring to  unsafeLast.nonempty-vectorO(1) Indexing.nonempty-vectorO(1) Safe indexing.nonempty-vectorO(1)( Unsafe indexing without bounds checkingnonempty-vectorO(1) Indexing in a monad.QThe monad allows operations to be strict in the non-empty vector when necessary.See  for more detailsnonempty-vectorO(1)0 First element of a non-empty vector in a monad.See * for an explanation of why this is useful."Note that this function defers to  unsafeHeadM6 since head is gauranteed to be safe by construction. nonempty-vectorO(1)4 Last element of a non-empty vector in a monad. See + for an explanation of why this is useful."Note that this function defers to  unsafeHeadM% since a last element is gauranteed. nonempty-vector4O(1) Indexing in a monad without bounds checks. See + for an explanation of why this is useful. nonempty-vectorO(1) Yield all but the first element without copying. Since the vector returned may be empty (i.e. input was a singleton), this function returns a normal  nonempty-vectorO(1) Yield a slice of the non-empty vector without copying it. The vector must contain at least i+n elements. Because this is not guaranteed, this function returns a  which could be empty nonempty-vectorO(1) Yield all but the last element without copying. Since the vector returned may be empty (i.e. input was a singleton), this function returns a normal nonempty-vectorO(1) Yield at the first n elements without copying. The non-empty vector may contain less than n elements in which case it is returned as a vector unchanged.nonempty-vectorO(1) Yield all but the first n elements without copying. The non-empty vector may contain less than n elements in which case an empty vector is returned.nonempty-vectorO(1)F Yield the first n elements paired with the remainder without copying.EThis function returns a pair of vectors, as one may slice a (0, n+1).nonempty-vectorO(1)u Yield a slice of the vector without copying. The vector must contain at least i+n elements but this is not checked.nonempty-vectorO(1)r Yield the first n elements without copying. The vector must contain at least n elements but this is not checked.nonempty-vectorO(1)z Yield all but the first n elements without copying. The vector must contain at least n elements but this is not checked.nonempty-vectorO(1)* Non-empty vector with exactly one elementnonempty-vectorO(n)L Non-empty vector of the given length with the same value in each position. When given a index n <= 0, then  is returned, otherwise .nonempty-vectorO(n)P Construct a vector of the given length by applying the function to each index. When given a index n <= 0, then  is returned, otherwise .nonempty-vectorO(n)C Apply function n times to value. Zeroth element is original value. When given a index n <= 0, then  is returned, otherwise .nonempty-vectorO(n)Y Execute the monadic action the given number of times and store the results in a vector. When given a index n <= 0, then  is returned, otherwise .nonempty-vectorO(n)U Construct a vector of the given length by applying the monadic action to each index When given a index n <= 0, then  is returned, otherwise .nonempty-vectorO(n)L Apply monadic function n times to value. Zeroth element is original value. When given a index n <= 0, then  is returned, otherwise .nonempty-vectorEExecute the monadic action and freeze the resulting non-empty vector.nonempty-vectorEExecute the monadic action and freeze the resulting non-empty vector.nonempty-vectorO(n)v Construct a non-empty vector by repeatedly applying the generator function to a seed. The generator function yields ' the next element and the new seed or  if there are no more elements.0If an unfold does not create meaningful values,  is returned. Otherwise, + containing a non-empty vector is returned.nonempty-vectorO(n) Construct a vector with at most n elements by repeatedly applying the generator function to a seed. The generator function yields & the next element and the new seed or  if there are no more elements.0If an unfold does not create meaningful values,  is returned. Otherwise, + containing a non-empty vector is returned.nonempty-vectorO(n) Construct a non-empty vector by repeatedly applying the monadic generator function to a seed. The generator function yields Just the next element and the new seed or Nothing if there are no more elements.0If an unfold does not create meaningful values,  is returned. Otherwise, + containing a non-empty vector is returned. nonempty-vectorO(n) Construct a non-empty vector by repeatedly applying the monadic generator function to a seed. The generator function yields Just the next element and the new seed or Nothing if there are no more elements.0If an unfold does not create meaningful values,  is returned. Otherwise, + containing a non-empty vector is returned.!nonempty-vectorO(n) Construct a non-empty vector with n elements by repeatedly applying the generator function to the already constructed part of the vector.If !$ does not create meaningful values,  is returned. Otherwise, + containing a non-empty vector is returned."nonempty-vectorO(n) Construct a vector with n elements from right to left by repeatedly applying the generator function to the already constructed part of the vector.If "$ does not create meaningful values,  is returned. Otherwise, + containing a non-empty vector is returned.#nonempty-vectorO(n) Yield a non-emptyvector of the given length containing the values x, x+1 etc. This operation is usually more efficient than %.3If an enumeration does not use meaningful indices,  is returned, otherwise,  containing a non-empty vector.$nonempty-vectorO(n) Yield a non-empty vector of the given length containing the values x, x+y, x+y+y etc. This operations is usually more efficient than &.3If an enumeration does not use meaningful indices,  is returned, otherwise,  containing a non-empty vector.%nonempty-vectorO(n) Enumerate values from x to y.3If an enumeration does not use meaningful indices,  is returned, otherwise,  containing a non-empty vector.WARNINGC: This operation can be very inefficient. If at all possible, use # instead.&nonempty-vectorO(n)5 Enumerate values from x to y with a specific step z.3If an enumeration does not use meaningful indices,  is returned, otherwise,  containing a non-empty vector.WARNINGC: This operation can be very inefficient. If at all possible, use $ instead.'nonempty-vectorO(n) Prepend an element(nonempty-vectorO(n) Append an element)nonempty-vectorO(m+n)" Concatenate two non-empty vectors*nonempty-vectorO(n). Concatenate all non-empty vectors in the listIf list is empty,  is returned, otherwise / containing the concatenated non-empty vectors+nonempty-vector;O(n) Concatenate all non-empty vectors in a non-empty list.,nonempty-vectorO(n)0 Convert a non-empty vector to a non-empty list.-nonempty-vector9O(n) Convert from a non-empty list to a non-empty vector..nonempty-vectorRO(n) Convert from the first n-elements of a non-empty list to a non-empty vector.Returns  if indices are <= 0, otherwise " containing the non-empty vector./nonempty-vectorO(1)- Convert from a non-empty vector to a vector.0nonempty-vectorO(1)- Convert from a vector to a non-empty vector.If the vector is empty, then  is returned, otherwise ! containing the non-empty vector.1nonempty-vectorO(n)+ Convert from a non-empty vector to a list.2nonempty-vectorO(n)+ Convert from a list to a non-empty vector.3nonempty-vectorO(n)> Convert the first n elements of a list to a non-empty vector.2If the list is empty or <= 0 elements are chosen,  is returned, otherwise  containing the non-empty vector4nonempty-vectorO(n)Y Yield the argument but force it not to retain any extra memory, possibly by copying it.5nonempty-vectorO(m+n)] For each pair (i,a) from the list, replace the non-empty vector element at position i by a.6nonempty-vectorpO(m+n) For each pair (i,a) from the vector of index/value pairs, replace the vector element at position i by a.7nonempty-vectorO(m+min(n1,n2)) For each index i from the index vector and the corresponding value a from the value vector, replace the element of the initial vector at position i by a.8nonempty-vector+Same as '(//)' but without bounds checking.9nonempty-vectorSame as 6 but without bounds checking.:nonempty-vectorSame as 7 but without bounds checking.;nonempty-vectorO(m+n) For each pair (i,b)@ from the non-empty list, replace the non-empty vector element a at position i by f a b.<nonempty-vectorO(m+n) For each pair (i,b)A from the vector of pairs, replace the non-empty vector element a at position i by f a b.=nonempty-vectorO(m+min(n1,n2)) For each index i4 from the index vector and the corresponding value b] from the the value vector, replace the element of the initial non-empty vector at position i by f a b.>nonempty-vectorSame as ; but without bounds checking.?nonempty-vectorSame as < but without bounds checking.@nonempty-vectorSame as = but without bounds checking.Anonempty-vectorO(n) Reverse a non-empty vectorBnonempty-vectorO(n)@ Yield the non-empty vector obtained by replacing each element i" of the non-empty index vector by xsi. This is equivalent to F (xs) is" but is often much more efficient.Cnonempty-vectorSame as B but without bounds checking.Dnonempty-vectorApply a destructive operation to a non-empty vector. The operation will be performed in place if it is safe to do so and will modify a copy of the non-empty vector otherwise.Enonempty-vectorO(n). Pair each element in a vector with its index.Fnonempty-vectorO(n)( Map a function over a non-empty vector.Gnonempty-vectorO(n)H Apply a function to every element of a non-empty vector and its index.Hnonempty-vector9Map a function over a vector and concatenate the results.Inonempty-vectorO(n)i Apply the monadic action to all elements of the non-empty vector, yielding non-empty vector of results.Jnonempty-vectorO(n)x Apply the monadic action to every element of a non-empty vector and its index, yielding a non-empty vector of results.Knonempty-vectorO(n)X Apply the monadic action to all elements of a non-empty vector and ignore the results.Lnonempty-vectorO(n)f Apply the monadic action to every element of a non-emptpy vector and its index, ignoring the resultsMnonempty-vectorO(n)l Apply the monadic action to all elements of the non-empty vector, yielding a non0empty vector of results.Equivalent to flip I.Nnonempty-vectorO(n)X Apply the monadic action to all elements of a non-empty vector and ignore the results.Equivalent to flip K.Ononempty-vector O(min(m,n))3 Zip two non-empty vectors with the given function.Pnonempty-vector4Zip three non-empty vectors with the given function.Qnonempty-vector3Zip four non-empty vectors with the given function.Rnonempty-vector3Zip five non-empty vectors with the given function.Snonempty-vector2Zip six non-empty vectors with the given function.Tnonempty-vector O(min(m,n))R Zip two non-empty vectors with a function that also takes the elements' indices.Unonempty-vectorFZip three non-empty vectors and their indices with the given function.Vnonempty-vectorEZip four non-empty vectors and their indices with the given function.Wnonempty-vectorEZip five non-empty vectors and their indices with the given function.Xnonempty-vectorDZip six non-empty vectors and their indices with the given function.Ynonempty-vector O(min(n,m))2 Elementwise pairing of non-empty vector elements.Znonempty-vector%Zip together three non-empty vectors.[nonempty-vector$Zip together four non-empty vectors.\nonempty-vector$Zip together five non-empty vectors.]nonempty-vector#Zip together six non-empty vectors.^nonempty-vector O(min(m,n))` Zip the two non-empty vectors with the monadic action and yield a non-empty vector of results._nonempty-vector O(min(m,n))v Zip the two non-empty vectors with a monadic action that also takes the element index and yield a vector of results.`nonempty-vector O(min(m,n))O Zip the two non-empty vectors with the monadic action and ignore the results.anonempty-vector O(min(m,n))o Zip the two non-empty vectors with a monadic action that also takes the element index and ignore the results.bnonempty-vector O(min(m,n))# Unzip a non-empty vector of pairs.cnonempty-vector$Unzip a non-empty vector of triples.dnonempty-vector'Unzip a non-empty vector of quadruples.enonempty-vector'Unzip a non-empty vector of quintuples.fnonempty-vector&Unzip a non-empty vector of sextuples.gnonempty-vectorO(n)1 Drop elements that do not satisfy the predicate.HIf no elements satisfy the predicate, the resulting vector may be empty.hnonempty-vectorO(n)_ Drop elements that do not satisfy the predicate which is applied to values and their indices.HIf no elements satisfy the predicate, the resulting vector may be empty.inonempty-vectorO(n)9 Drop elements that do not satisfy the monadic predicate.HIf no elements satisfy the predicate, the resulting vector may be empty.jnonempty-vectorO(n)! Drop repeated adjacent elements.knonempty-vectorO(n)- Drop elements when predicate returns NothingHIf no elements satisfy the predicate, the resulting vector may be empty.lnonempty-vectorO(n)J Drop elements when predicate, applied to index and value, returns NothingHIf no elements satisfy the predicate, the resulting vector may be empty.mnonempty-vectorO(n)P Yield the longest prefix of elements satisfying the predicate without copying.HIf no elements satisfy the predicate, the resulting vector may be empty.nnonempty-vectorO(n)Q Drop the longest prefix of elements that satisfy the predicate without copying.IIf all elements satisfy the predicate, the resulting vector may be empty.ononempty-vectorO(n) Split the non-empty vector in two parts, the first one containing those elements that satisfy the predicate and the second one those that don't. The relative order of the elements is preserved at the cost of a sometimes reduced performance compared to p.XIf all or no elements satisfy the predicate, one of the resulting vectors may be empty.pnonempty-vectorO(n) Split the non-empty vector in two parts, the first one containing those elements that satisfy the predicate and the second one those that don't. The order of the elements is not preserved but the operation is often faster than o.XIf all or no elements satisfy the predicate, one of the resulting vectors may be empty.qnonempty-vectorO(n)y Split the non-empty vector into the longest prefix of elements that satisfy the predicate and the rest without copying.XIf all or no elements satisfy the predicate, one of the resulting vectors may be empty.rnonempty-vectorO(n)v Split the vector into the longest prefix of elements that do not satisfy the predicate and the rest without copying.XIf all or no elements satisfy the predicate, one of the resulting vectors may be empty.snonempty-vectorO(n)2 Check if the non-empty vector contains an elementtnonempty-vectorO(n)H Check if the non-empty vector does not contain an element (inverse of s)unonempty-vectorO(n) Yield . the first element matching the predicate or  if no such element exists.vnonempty-vectorO(n) Yield ; the index of the first element matching the predicate or  if no such element exists.wnonempty-vectorO(n)L Yield the indices of elements satisfying the predicate in ascending order.xnonempty-vectorO(n) Yield ; the index of the first occurence of the given element or Y if the non-empty vector does not contain the element. This is a specialised version of v.ynonempty-vectorO(n)p Yield the indices of all occurences of the given element in ascending order. This is a specialised version of w.znonempty-vectorO(n) Left monoidal fold{nonempty-vectorO(n) Left semigroupal fold|nonempty-vectorO(n) Strict Left monoidal fold}nonempty-vectorO(n) Strict Left semigroupal fold~nonempty-vectorO(n) Right monoidal foldnonempty-vectorO(n) Right semigroupal foldnonempty-vectorO(n) Strict right monoidal foldnonempty-vectorO(n) Strict right semigroupal foldnonempty-vectorO(n)H Left monoidal fold with function applied to each element and its indexnonempty-vectorO(n)O Strict left monoidal fold with function applied to each element and its indexnonempty-vectorO(n)I Right monoidal fold with function applied to each element and its indexnonempty-vectorO(n)P strict right monoidal fold with function applied to each element and its indexnonempty-vectorO(n)- Check if all elements satisfy the predicate.nonempty-vectorO(n). Check if any element satisfies the predicate.nonempty-vectorO(n) Check if all elements are True.nonempty-vectorO(n) Check if any element is Truenonempty-vectorO(n) Compute the sum of the elementsnonempty-vectorO(n)$ Compute the produce of the elementsnonempty-vectorO(n)3 Yield the maximum element of the non-empty vector.nonempty-vectorO(n)] Yield the maximum element of a non-empty vector according to the given comparison function.nonempty-vectorO(n)3 Yield the minimum element of the non-empty vector.nonempty-vectorO(n)_ Yield the minimum element of the non-empty vector according to the given comparison function.nonempty-vectorO(n)A Yield the index of the minimum element of the non-empty vector.nonempty-vectorO(n)b Yield the index of the minimum element of the vector according to the given comparison function.nonempty-vectorO(n)A Yield the index of the maximum element of the non-empty vector.nonempty-vectorO(n)b Yield the index of the maximum element of the vector according to the given comparison function.nonempty-vectorO(n) Monadic foldnonempty-vectorO(n)< Monadic fold (action applied to each element and its index)nonempty-vectorO(n) Strict monadic foldnonempty-vectorO(n)C Strict monadic fold (action applied to each element and its index)nonempty-vectorO(n) Monadic semigroupal foldnonempty-vectorO(n) Strict monadic semigroupal foldnonempty-vectorO(n)& Monadic fold that discards the resultnonempty-vectorO(n)V Monadic fold that discards the result (action applied to each element and its index)nonempty-vectorO(n)- Strict monadic fold that discards the resultnonempty-vectorO(n)] Strict monadic fold that discards the result (action applied to each element and its index)nonempty-vectorO(n)2 Monadic semigroupal fold that discards the resultnonempty-vectorO(n)9 Strict monadic semigroupal fold that discards the resultnonempty-vector,Evaluate each action and collect the resultsnonempty-vector,Evaluate each action and discard the resultsnonempty-vectorO(n) Prescannonempty-vectorO(n) Prescan with strict accumulatornonempty-vectorO(n) Scannonempty-vectorO(n) Scan with a strict accumulatornonempty-vectorO(n) Haskell-style scannonempty-vectorO(n)+ Haskell-style scan with strict accumulatornonempty-vectorO(n) Semigroupal left scannonempty-vectorO(n) Strict semigroupal scannonempty-vectorO(n)" Scan over a vector with its indexnonempty-vectorO(n): Scan over a vector with its index with strict accumulatornonempty-vectorO(n) Right-to-left prescannonempty-vectorO(n). Right-to-left prescan with strict accumulatornonempty-vectorO(n) Right-to-left scannonempty-vectorO(n)+ Right-to-left scan with strict accumulatornonempty-vectorO(n)! Right-to-left Haskell-style scannonempty-vectorO(n)9 Right-to-left Haskell-style scan with strict accumulatornonempty-vectorO(n)- Right-to-left Haskell-style semigroupal scannonempty-vectorO(n)E Right-to-left Haskell-style semigroupal scan with strict accumulatornonempty-vectorO(n)0 Right-to-left scan over a vector with its indexnonempty-vectorO(n)J Right-to-left scan over a vector with its index and a strict accumulator;nonempty-vectoraccumulating function fnonempty-vector$initial non-empty vector (of length m)nonempty-vector%list of index/value pairs (of length n)<nonempty-vectoraccumulating function fnonempty-vector$initial non-empty vector (of length m)nonempty-vector'vector of index/value pairs (of length n)=nonempty-vectoraccumulating function fnonempty-vector$initial non-empty vector (of length m)nonempty-vectorvector of indices (of length n1)nonempty-vectorvector of values (of length n2)>nonempty-vectoraccumulating function fnonempty-vector$initial non-empty vector (of length m)nonempty-vector%list of index/value pairs (of length n)?nonempty-vectoraccumulating function fnonempty-vector$initial non-empty vector (of length m)nonempty-vector'vector of index/value pairs (of length n)@nonempty-vectoraccumulating function fnonempty-vector$initial non-empty vector (of length m)nonempty-vectorvector of indices of length n1nonempty-vectorvector of values (of length n2)  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~   !"#$%&'()*+4,-./012356789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^`_abcdefghjklimnopqrstuvwxyz{|}~(c) 2019 Emily Pillmore BSD-style$Emily Pillmore <emilypi@cohomolo.gy> experimental non-portableNone2$nonempty-vector NonEmptyMVector parametrized by STnonempty-vector NonEmptyMVector parametrized by nonempty-vector is a thin wrapper around y that witnesses an API requiring non-empty construction, initialization, and generation of non-empty vectors by design.aA newtype wrapper was chosen so that no new pointer indirection is introduced when working with ;s, and all performance characteristics inherited from the  API still apply.nonempty-vectorLength of the mutable vector.nonempty-vector3Yield a part of the mutable vector without copying.nonempty-vector.Yield at the first n elements without copying.nonempty-vector3Yield all but the first n elements without copying.nonempty-vectorEYield the first n elements paired with the remainder without copying.nonempty-vector/Yield all but the last element without copying.nonempty-vector0Yield all but the first element without copying.nonempty-vectorWYield a part of the mutable vector without copying it. No bounds checks are performed.nonempty-vectorqYield the first n elements without copying. The vector must contain at least n elements but this is not checked.nonempty-vectoryYield all but the first n elements without copying. The vector must contain at least n elements but this is not checked.nonempty-vector"Check whether two vectors overlap.nonempty-vector,Create a mutable vector of the given length.nonempty-vectorKCreate a mutable vector of the given length. The memory is not initialized.nonempty-vectormCreate a mutable vector of the given length (0 if the length is negative) and fill it with an initial value.nonempty-vectorCreate a mutable vector of the given length (0 if the length is negative) and fill it with values produced by repeatedly executing the monadic action.nonempty-vector"Create a copy of a mutable vector.nonempty-vectorLGrow a vector by the given number of elements. The number must be positive.nonempty-vectordGrow a vector by the given number of elements. The number must be positive but this is not checked.nonempty-vectorReset all elements of the vector to some undefined value, clearing all references to external objects. This is usually a noop for unboxed vectors.nonempty-vector(Yield the element at the given position.nonempty-vector*Replace the element at the given position.nonempty-vector)Modify the element at the given position.nonempty-vector)Swap the elements at the given positions.nonempty-vectorHYield the element at the given position. No bounds checks are performed.nonempty-vectorJReplace the element at the given position. No bounds checks are performed.nonempty-vectorIModify the element at the given position. No bounds checks are performed.nonempty-vectorISwap the elements at the given positions. No bounds checks are performed.nonempty-vector2Set all elements of the vector to the given value.nonempty-vectorNCopy a vector. The two vectors must have the same length and may not overlap.nonempty-vectorcCopy a vector. The two vectors must have the same length and may not overlap. This is not checked.nonempty-vectorJMove the contents of a vector. The two vectors must have the same length.:If the vectors do not overlap, then this is equivalent to . Otherwise, the copying is performed as if the source vector were copied to a temporary vector and then the temporary vector was copied to the target vector.nonempty-vectorcMove the contents of a vector. The two vectors must have the same length, but this is not checked.:If the vectors do not overlap, then this is equivalent to . Otherwise, the copying is performed as if the source vector were copied to a temporary vector and then the temporary vector was copied to the target vector.nonempty-vector~Compute the next (lexicographically) permutation of given vector in-place. Returns False when input is the last permtuationnonempty-vectorstarting indexnonempty-vectorlength of the slicenonempty-vectortargetnonempty-vectorsourcenonempty-vectortargetnonempty-vectorsource$$      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~G nonempty-vector-0.0.1.0-inplaceData.Vector.NonEmptyData.Vector.NonEmpty.MutableNonEmptyVectorlengthheadlast!!? unsafeIndexindexMheadMlastM unsafeIndexMtailsliceinittakedropsplitAt unsafeSlice unsafeTake unsafeDrop singleton replicategenerateiterateN replicateM generateM iterateNMcreatecreateTunfoldrunfoldrNunfoldrM unfoldrNM constructN constructrN enumFromN enumFromStepN enumFromToenumFromThenToconssnoc++concatconcat1 toNonEmpty fromNonEmpty fromNonEmptyNtoVector fromVectortoListfromList fromListNforce//updateupdate_ unsafeUpd unsafeUpdate unsafeUpdate_accum accumulate accumulate_ unsafeAccumunsafeAccumulateunsafeAccumulate_reverse backpermuteunsafeBackpermutemodifyindexedmapimap concatMapmapMimapMmapM_imapM_forMforM_zipWithzipWith3zipWith4zipWith5zipWith6izipWith izipWith3 izipWith4 izipWith5 izipWith6zipzip3zip4zip5zip6zipWithM izipWithM zipWithM_ izipWithM_unzipunzip3unzip4unzip5unzip6filterifilterfilterMuniqmapMaybe imapMaybe takeWhile dropWhile partitionunstablePartitionspanbreakelemnotElemfind findIndex findIndices elemIndex elemIndicesfoldlfoldl1foldl'foldl1'foldrfoldr1foldr'foldr1'ifoldlifoldl'ifoldrifoldr'allanyandorsumproductmaximum maximumByminimum minimumByminIndex minIndexBymaxIndex maxIndexByfoldMifoldMfoldM'ifoldM'fold1Mfold1M'foldM_ifoldM_foldM'_ifoldM'_fold1M_fold1M'_sequence sequence_prescanl prescanl' postscanl postscanl'scanlscanl'scanl1scanl1'iscanliscanl'prescanr prescanr' postscanr postscanr'scanrscanr'scanr1scanr1'iscanriscanr'$fTraversableNonEmptyVector$fFoldableNonEmptyVector$fShowNonEmptyVector$fEqNonEmptyVector$fOrdNonEmptyVector$fReadNonEmptyVector$fEq1NonEmptyVector$fOrd1NonEmptyVector$fShow1NonEmptyVector$fRead1NonEmptyVector$fDataNonEmptyVector$fGenericNonEmptyVector$fNFDataNonEmptyVector$fFunctorNonEmptyVector$fApplicativeNonEmptyVector$fMonadNonEmptyVector$fMonadFailNonEmptyVector$fMonadZipNonEmptyVector$fAlternativeNonEmptyVector$fSemigroupNonEmptyVectorNonEmptySTVectorNonEmptyIOVectorNonEmptyMVectoroverlapsnew unsafeNewclonegrow unsafeGrowclearreadwriteswap unsafeRead unsafeWrite unsafeModify unsafeSwapsetcopy unsafeCopymove unsafeMovenextPermutationvctr-0.12.0.3-3f66289a Data.VectorVectorbase GHC.MaybeNothingJustprmtv-0.7.0.0-1675227eControl.Monad.Primitive PrimStateData.Vector.MutableMVector