Flags

fs2.io.file.Flags
See theFlags companion object
case class Flags(value: List[Flag])

Flags describing how a file should be opened by Files[F].open(path, flags).

Common flag combinations are available in the companion (e.g. Flags.Write) Custom combinations are supported via the apply method (e.g., Flags(Flag.Write, Flag.CreateNew)).

Attributes

Companion:
object
Source:
Flags.scala
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Concrete methods

def addIfAbsent(flag: Flag): Flags

Attributes

Source:
Flags.scala
def contains(flag: Flag): Boolean

Attributes

Source:
Flags.scala

Inherited methods

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product