sealed trait JsonOption[+A] extends AnyRef
Ordering
- Alphabetic
- By Inheritance
Inherited
- JsonOption
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
- abstract def contains[A1 >: A](value: A1): Boolean
- abstract def exists[A1 >: A](f: (A1) => Boolean): Boolean
- abstract def filterToNull(f: (A) => Boolean): JsonOption[A]
- abstract def filterToUndefined(f: (A) => Boolean): JsonOption[A]
- abstract def flatMap[B](f: (A) => JsonOption[B]): JsonOption[B]
- abstract def fold[B](ifNull: => B, ifUndefined: => B)(f: (A) => B): B
- abstract def forall[A1 >: A](f: (A1) => Boolean): Boolean
- abstract def foreach[A1 >: A](f: (A1) => Unit): Unit
- abstract def getOrElse[B >: A](other: => B): B
- abstract def getOrElseIfUndefined[B >: A](other: => B): Option[B]
- abstract def isEmpty: Boolean
- abstract def isNull: Boolean
- abstract def isUndefined: Boolean
- abstract def map[B](f: (A) => B): JsonOption[B]
- abstract def orElse[B >: A](other: => JsonOption[B]): JsonOption[B]
- abstract def orElseIfUndefined[B >: A](other: => Option[B]): Option[B]
- abstract def toJson(implicit encoder: Encoder[A]): JsonOption[Json]
- abstract def toList[A1 >: A]: List[A]
- abstract def toOption: Option[A]