DirectivePart

abstract class DirectivePart[+A] extends ParsedDirective => Result[A]

Represents a single part (argument, field or body) of a directive.

class Object
trait Matchable
class Any

Value members

Concrete methods

def flatMap[B](f: A => Result[B]): DirectivePart[B]
def map[B](f: A => B): DirectivePart[B]
def ~[B](other: DirectivePart[B]): DirectivePart[A ~ B]

Inherited methods

@unspecialized
def andThen[A](g: Result[A] => A): ParsedDirective => A
Inherited from:
Function1
Inherited from:
Function1
@unspecialized
def compose[A](g: A => ParsedDirective): A => Result[A]
Inherited from:
Function1
override def toString(): String
Definition Classes
Function1 -> Any
Inherited from:
Function1