Skip to content

wikis Search Results · repo:jsuereth/scala-arm language:HTML

5 results
 (110 ms)

5 results

injsuereth/scala-arm (press backspace or delete to remove)
The language qualifier is not supported when searching wikis. Try searching for issues instead?

The Scala ARM library provides three “modes” of operations: Imperative style resource management functions. A monadic style resource management class. A delimited continuation style API . Imperative Style ...
  • Last updated
    on Jan 5, 2013

Scala-arm can make use of delimited continuations to simplify code. A delimited continuation is a way of rewriting code to simplify continuation passing style. The essence of delimited continuations ...
  • Last updated
    on Nov 8, 2019

Welcome to the scala-arm project! This project aims to provide Automatic-Resource-Management via a robust library with an easy-to-use interface. The project aims to support 80% of ARM -related use cases, ...
  • Last updated
    on Mar 22, 2016

The scala-arm library uses a Resource type class trait, conveniently called Resource to control how resources are opened/closed within ARM blocks. The basic trait is shown below: package scala.resource ...
  • Last updated
    on Mar 22, 2011

The Code: import java . net .{ ServerSocket , Socket } import java . io . _ import resource . _ class EchoServer extends Thread { override def run () : Unit = { import resource . _ for { server - ...
  • Last updated
    on Nov 23, 2011