Ops

final implicit class Ops(f: Ex[Folder]) extends AnyVal
class AnyVal
trait Matchable
class Any

Value members

Concrete methods

def append[A](elem: Ex[A])(implicit source: Source[A]): Act

Appends an element to the folder

Appends an element to the folder

def children: Ex[Seq[Obj]]
def clear: Act
def drop(n: Ex[Int]): Act

Drops the n first elements from the folder. If the folder contains less elements than n, the folder will become empty.

Drops the n first elements from the folder. If the folder contains less elements than n, the folder will become empty.

def dropRight(n: Ex[Int]): Act

Drops the n last elements from the folder. If the folder contains less elements than n, the folder will become empty.

Drops the n last elements from the folder. If the folder contains less elements than n, the folder will become empty.

def isEmpty: Ex[Boolean]
def nonEmpty: Ex[Boolean]
def prepend[A](elem: Ex[A])(implicit source: Source[A]): Act

Prepends an element to the folder

Prepends an element to the folder

def remove(obj: Ex[Obj]): Act
def size: Ex[Int]