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.
(
!!! ) :: Ix i => BitArray i -> i -> Boolbitwise Data.Array.BitArray Bit array indexing without bounds checking. Unsafe.
-
tidal-core Sound.Tidal.Utils like !! selects nth element from xs, but wraps over at the end of xs
>>> map ((!!!) [1,3,5]) [0,1,2,3,4,5] [1,3,5,1,3,5]
(
!!! ) :: [a] -> Int -> Maybe aAgda Agda.Utils.List Lookup function (safe). O(min n index).
(
!!! ) :: [a] -> Int -> Maybe aShellCheck ShellCheck.Prelude No documentation available.
(
!!! ) :: (Typed a, Eq b, Num b, Typed b) => [Stream a] -> Stream b -> Stream acopilot-libraries Copilot.Library.Utils Index. WARNING: Very expensive! Consider using this only for very short lists.
(
!!! ) :: AtIndex v => v -> Position -> Elem vhw-prim HaskellWorks.Data.AtIndex No documentation available.
(
!!* ) :: Count a -> Int -> Integersize-based Control.Enumerable.Count Counts the number of values of a given size, 0 if out of bounds.
(
$!! ) :: NFData a => (a -> b) -> a -> bdeepseq Control.DeepSeq the deep analogue of $!. In the expression f $!! x, x is fully evaluated before the function f is applied to it.
(
<$!!> ) :: (Monad m, NFData b) => (a -> b) -> m a -> m bdeepseq Control.DeepSeq Deeply strict version of <$>.
(
*!! ) :: (Functor m, Functor r, Num a) => a -> m (r a) -> m (r a)linear Linear.Matrix Scalar-matrix product
>>> 5 *!! V2 (V2 1 2) (V2 3 4) V2 (V2 5 10) (V2 15 20)