io.github.srs.model.entity.dynamicentity.action.SequenceAction
See theSequenceAction companion object
final case class SequenceAction[F[_]](actions: List[Action[F]])(using evidence$1: Monad[F]) extends Action[F]
SequenceAction represents a composite action that executes a sequence of actions in order.
Type parameters
- E
-
the type of dynamic entity on which the action will be executed, extending DynamicEntity.
- F
-
the effect type of the action.
Value parameters
- actions
-
the list of actions to be executed in sequence.
- monad$F$0
-
the implicit Monad instance for the effect type F.
Attributes
Members list
In this article