Hoogle Search
Within LTS Haskell 24.4 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
classy-prelude-yesod ClassyPrelude.Yesod Generally speaking, yielding values from inside a Conduit requires some allocation for constructors. This can introduce an overhead, similar to the overhead needed to represent a list of values instead of a vector. This overhead is even more severe when talking about unboxed values. This combinator allows you to overcome this overhead, and efficiently fill up vectors. It takes two parameters. The first is the size of each mutable vector to be allocated. The second is a function. The function takes an argument which will yield the next value into a mutable vector. Under the surface, this function uses a number of tricks to get high performance. For more information on both usage and implementation, please see: https://www.fpcomplete.com/user/snoyberg/library-documentation/vectorbuilder
vectorSort :: (Vector v e, Ord e) => v e -> v eclassy-prelude-yesod ClassyPrelude.Yesod Sort a vector.
vectorSortBy :: Vector v e => (e -> e -> Ordering) -> v e -> v eclassy-prelude-yesod ClassyPrelude.Yesod Sort a vector using an supplied element ordering function.
vectorSearchStatistics :: JobStatistics2 -> Maybe VectorSearchStatisticsgogol-bigquery Gogol.BigQuery Output only. Vector Search query specific statistics.
vectorSearchStatistics :: JobStatistics2 -> Maybe VectorSearchStatisticsgogol-bigquery Gogol.BigQuery.Types Output only. Vector Search query specific statistics.
vectorProperty :: FindNearest -> Maybe PropertyReferencegogol-datastore Gogol.Datastore Required. An indexed vector property to search upon. Only documents which contain vectors whose dimensionality match the query_vector can be returned.
vectorProperty :: FindNearest -> Maybe PropertyReferencegogol-datastore Gogol.Datastore.Types Required. An indexed vector property to search upon. Only documents which contain vectors whose dimensionality match the query_vector can be returned.
vectorStatement :: QuasiQuoterhasql-th Hasql.TH :: Statement params (Vector row)
Statement producing a vector of rows.Examples
>>> :t [vectorStatement|select 1 :: int2|] ... :: Statement () (Vector Int16)
vectorToRepa :: (Storable e, Vector Vector e, Container Vector e) => Vector e -> Array V DIM1 ehmatrix-repa Data.Packed.Repa convert a Storable vector to a DIM1 repa array
-
A buffer compatible with Data.Vector.* A buffer type that can easily be converted to a Data.Vector.Storable vector from the vector package and compatible with hmatrix. Elements are pushed into the buffer. When the buffer is converted to a read-only vector, the last-pushed element occurs at the end. Monadic map functions also operate so that the last-pushed element is treated last.