io.github.netvl.picopickle

Backend

trait Backend extends AnyRef

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Backend
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. abstract type BArray <: BValue

  2. abstract type BBoolean <: BValue

  3. abstract type BNull <: BValue

  4. abstract type BNumber <: BValue

  5. abstract type BObject <: BValue

  6. abstract type BString <: BValue

  7. abstract type BValue

Abstract Value Members

  1. abstract def fromArray(arr: BArray): Vector[BValue]

  2. abstract def fromBoolean(bool: BBoolean): Boolean

  3. abstract def fromNumber(num: BNumber): Number

  4. abstract def fromNumberAccurately: PartialFunction[BValue, Number]

  5. abstract def fromNumberAccuratelyExpected: String

  6. abstract def fromObject(obj: BObject): Map[String, BValue]

  7. abstract def fromString(str: BString): String

  8. abstract def getArray(value: BValue): Option[BArray]

  9. abstract def getArrayLength(arr: BArray): Int

  10. abstract def getArrayValueAt(arr: BArray, idx: Int): BValue

  11. abstract def getBoolean(value: BValue): Option[BBoolean]

  12. abstract def getNull(value: BValue): Option[BNull]

  13. abstract def getNumber(value: BValue): Option[BNumber]

  14. abstract def getObject(value: BValue): Option[BObject]

  15. abstract def getObjectKey(obj: BObject, key: String): Option[BValue]

  16. abstract def getString(value: BValue): Option[BString]

  17. abstract def makeArray(v: Vector[BValue]): BArray

  18. abstract def makeBoolean(b: Boolean): BBoolean

  19. abstract def makeNull: BNull

  20. abstract def makeNumber(n: Number): BNumber

  21. abstract def makeNumberAccurately(n: Number): BValue

  22. abstract def makeObject(m: Map[String, BValue]): BObject

  23. abstract def makeString(s: String): BString

  24. abstract def pushToArray(arr: BArray, value: BValue): BArray

  25. abstract def removeObjectKey(obj: BObject, key: String): BObject

  26. abstract def setObjectKey(obj: BObject, key: String, value: BValue): BObject

Concrete Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. object Extract

  7. object Get

  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def containsObjectKey(obj: BObject, key: String): Boolean

  11. object conversionImplicits

  12. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  16. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  17. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  18. def makeEmptyArray: BArray

  19. def makeEmptyObject: BObject

  20. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  21. final def notify(): Unit

    Definition Classes
    AnyRef
  22. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  23. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  24. def toString(): String

    Definition Classes
    AnyRef → Any
  25. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped