sliceofpy-1.0.0: Python-ish slicing traversals for Haskell.
Data.Slice.Lens
class Slice s where Source #
Methods
start :: s -> Maybe Int Source #
end :: s -> Maybe Int Source #
step :: s -> Maybe Int Source #
Defined in Data.Slice.Lens.Internal
start :: String -> Maybe Int Source #
end :: String -> Maybe Int Source #
step :: String -> Maybe Int Source #
start :: (Int, Int, Int) -> Maybe Int Source #
end :: (Int, Int, Int) -> Maybe Int Source #
step :: (Int, Int, Int) -> Maybe Int Source #
start :: (Maybe Int, Maybe Int, Maybe Int) -> Maybe Int Source #
end :: (Maybe Int, Maybe Int, Maybe Int) -> Maybe Int Source #
step :: (Maybe Int, Maybe Int, Maybe Int) -> Maybe Int Source #
sliced :: (Slice s, Traversable t) => s -> IndexedTraversal' Int (t a) a Source #
sliced' :: Traversable t => Maybe Int -> Maybe Int -> Maybe Int -> IndexedTraversal' Int (t a) a Source #