All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cilib.syntax.Step.scala Maven / Gradle / Ivy

There is a newer version: 2.0.1-30-g5ca4090
Show newest version
package cilib
package syntax

import scalaz.StateT

object step {
  final implicit class StepOps[A, B](val self: Step[A, B]) extends AnyVal {
    def liftStepS[S]: StepS[A, S, B] = StepS(StateT[Step[A, ?], S, B](s => self.map((s, _))))
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy