Skip to content
/ beam Public

Streams using Algebraic Effects and Handlers

License

Notifications You must be signed in to change notification settings

marcinzh/beam

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Maven Central Version javadoc

Beam

Purely functional streams, implemented with algebraic effects and handlers.

 

  • ⚗️ 🔬 🧪   𝑷𝑹𝑶𝑻𝑶𝑻𝒀𝑷𝑬   🚧 WIP 🚧
  • Uses Scala 3.
  • Uses Turbolift as effect system.
  • Inspired by Stream from Unison language.

 

Examples

Runnable with scala-cli.

Important

Turbolift requires Java 11 or newer.

//> using scala "3.3.5"
//> using dep "io.github.marcinzh::beam-core:0.12.0"
//> using dep "io.github.marcinzh::turbolift-bindless:0.108.0"
package examples
import turbolift.!!
import turbolift.effects.Console
import turbolift.bindless._
import beam._

/** Stuttering Fibonacci sequence: when the number is even, emit it twice. */

@main def ex01_sourceEffect =
  val stream: Stream[Long, Any] =
    Source: fx =>
      def loop(a: Long, b: Long): Unit !! fx.type =
        `do`:
          fx.emit(a).!
          if a % 2 == 0 then fx.emit(a).!
          loop(b, a + b).!
      loop(1, 1)

  stream
    .foreachEff(i => Console.println(i.toString))
    .take(20)
    .drain
  .handleWith(Console.handler)
  .runIO

See also examples folder.

About

Streams using Algebraic Effects and Handlers

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages