def
LeanRedis.Pipeline.lInsert
{α : List Type}
(pipeline : Pipeline α)
(key : String)
(position : LInsertPosition)
(pivot value : String)
:
Equations
- pipeline.lInsert key position pivot value = pipeline.hAppend (LeanRedis.Pipeline.fromCommand (LeanRedis.Command.lInsert key position pivot value))
Instances For
def
LeanRedis.Pipeline.lMove
{α : List Type}
(pipeline : Pipeline α)
(source destination : String)
(fromWhere toWhere : LMoveWhere)
:
Equations
- pipeline.lMove source destination fromWhere toWhere = pipeline.hAppend (LeanRedis.Pipeline.fromCommand (LeanRedis.Command.lMove source destination fromWhere toWhere))
Instances For
def
LeanRedis.Pipeline.lPos
{α : List Type}
(pipeline : Pipeline α)
(key element : String)
(options : LPosOptions := { })
:
Equations
- pipeline.lPos key element options = pipeline.hAppend (LeanRedis.Pipeline.fromCommand (LeanRedis.Command.lPos key element options))
Instances For
def
LeanRedis.Pipeline.lPosMany
{α : List Type}
(pipeline : Pipeline α)
(key element : String)
(options : LPosOptions)
:
Equations
- pipeline.lPosMany key element options = pipeline.hAppend (LeanRedis.Pipeline.fromCommand (LeanRedis.Command.lPosMany key element options))