Hoogle Search
Within LTS Haskell 24.32 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
type-level-kv-list Data.KVList Helper operator for optional chain.
(&.?) mkvs k = fmap (&. k) mkvs
>>> import Data.KVList ((&.?)) >>> :{ ( KVList.empty &= #foo := Just (KVList.empty &= #bar := "bar" ) ) &. #foo &.? #bar :} Just "bar" -
type-level-kv-list Data.KVList Helper operator for optional chain.
(&.??) mkvs k = (&. k) =<< mkvs
>>> import Data.KVList ((&.??)) >>> :{ ( KVList.empty &= #foo := Just (KVList.empty &= #bar := Just "bar" ) ) &. #foo &.?? #bar :} Just "bar" (
$.// ) :: Cursor node -> (Cursor node -> [a]) -> [a]xml-indexed-cursor Text.XML.Cursor.Indexed Apply an axis to a 'Cursor node' as well as its descendants.
(
&.// ) :: Axis node -> (Cursor node -> [a]) -> Cursor node -> [a]xml-indexed-cursor Text.XML.Cursor.Indexed Combine two axes so that the second works on both the result nodes, and their descendants.
-
LPFP-core LPFPCore Dot product of two vectors.
-
LPFP-core LPFPCore.SimpleVec Dot product of two vectors.
(
*. ) :: RightModule r m => m -> r -> malgebra Numeric.Algebra No documentation available.
(
*. ) :: RightModule r m => m -> r -> malgebra Numeric.Algebra.Class No documentation available.
(
*. ) :: RightModule r m => m -> r -> malgebra Numeric.Module.Class No documentation available.
(
!. ) :: Integral ix => BV -> ix -> Boolbv Data.BitVector Reverse bit-indexing. Index starting from the most significant bit.
u !. i == u @. (size u - i - 1)
>>> [3]3 !. 0 False