Packages

  • package root
    Definition Classes
    root
  • package scala
    Definition Classes
    root
  • package scalajs
    Definition Classes
    scala
  • package js

    Types, methods and values for interoperability with JavaScript libraries.

    Types, methods and values for interoperability with JavaScript libraries.

    This package is only relevant to the Scala.js compiler, and should not be referenced by any project compiled to the JVM.

    Guide

    General documentation on Scala.js is available at http://www.scala-js.org/doc/.

    Overview

    The trait js.Any is the root of the hierarchy of JavaScript types. This package defines important subtypes of js.Any that are defined in the standard library of ECMAScript 5.1 (or ES 6, with a label in the documentation), such as js.Object, js.Array and js.RegExp.

    Implicit conversions to and from standard Scala types to their equivalent in JavaScript are provided. For example, from Scala functions to JavaScript functions and back.

    The most important subtypes of js.Any declared in this package are:

    The trait js.Dynamic is a special subtrait of js.Any. It can represent any JavaScript value in a dynamically-typed way. It is possible to call any method and read and write any field of a value of type js.Dynamic.

    There are no explicit definitions for JavaScript primitive types, as one could expect, because the corresponding Scala types stand in their stead:

    • Boolean is the type of primitive JavaScript booleans
    • Double is the type of primitive JavaScript numbers
    • String is the type of primitive JavaScript strings (or null)
    • Unit is the type of the JavaScript undefined value
    • Null is the type of the JavaScript null value

    js.UndefOr gives a scala.Option-like interface where the JavaScript value undefined takes the role of None.

    A | B is an unboxed pseudo-union type, suitable to type values that admit several unrelated types in facade types.

    Definition Classes
    scalajs
  • object WrappedDictionary
    Definition Classes
    js
  • WrappedDictionaryBuilder
c

scala.scalajs.js.WrappedDictionary

WrappedDictionaryBuilder

class WrappedDictionaryBuilder[A] extends Builder[(String, A), WrappedDictionary[A]]

Linear Supertypes
Builder[(String, A), WrappedDictionary[A]], Growable[(String, A)], Clearable, AnyRef, scala.Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. WrappedDictionaryBuilder
  2. Builder
  3. Growable
  4. Clearable
  5. AnyRef
  6. Any
Implicitly
  1. by CollectionsHaveToParArray
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new WrappedDictionaryBuilder()

Value Members

  1. final def !=(arg0: scala.Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from WrappedDictionaryBuilder[A] to any2stringadd[WrappedDictionaryBuilder[A]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ++=(xs: collection.TraversableOnce[(String, A)]): WrappedDictionaryBuilder.this.type
    Definition Classes
    Growable
  5. def +=(elem: (String, A)): WrappedDictionaryBuilder.this.type
    Definition Classes
    WrappedDictionaryBuilder → Builder → Growable
  6. def +=(elem1: (String, A), elem2: (String, A), elems: (String, A)*): WrappedDictionaryBuilder.this.type
    Definition Classes
    Growable
  7. def ->[B](y: B): (WrappedDictionaryBuilder[A], B)
    Implicit
    This member is added by an implicit conversion from WrappedDictionaryBuilder[A] to ArrowAssoc[WrappedDictionaryBuilder[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  8. final def ==(arg0: scala.Any): Boolean
    Definition Classes
    AnyRef → Any
  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def clear(): Unit
    Definition Classes
    WrappedDictionaryBuilder → Builder → Growable → Clearable
  11. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. def ensuring(cond: (WrappedDictionaryBuilder[A]) ⇒ Boolean, msg: ⇒ scala.Any): WrappedDictionaryBuilder[A]
    Implicit
    This member is added by an implicit conversion from WrappedDictionaryBuilder[A] to Ensuring[WrappedDictionaryBuilder[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: (WrappedDictionaryBuilder[A]) ⇒ Boolean): WrappedDictionaryBuilder[A]
    Implicit
    This member is added by an implicit conversion from WrappedDictionaryBuilder[A] to Ensuring[WrappedDictionaryBuilder[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean, msg: ⇒ scala.Any): WrappedDictionaryBuilder[A]
    Implicit
    This member is added by an implicit conversion from WrappedDictionaryBuilder[A] to Ensuring[WrappedDictionaryBuilder[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean): WrappedDictionaryBuilder[A]
    Implicit
    This member is added by an implicit conversion from WrappedDictionaryBuilder[A] to Ensuring[WrappedDictionaryBuilder[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def equals(arg0: scala.Any): Boolean
    Definition Classes
    AnyRef → Any
  18. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from WrappedDictionaryBuilder[A] to StringFormat[WrappedDictionaryBuilder[A]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  20. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  21. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. def mapResult[NewTo](f: (WrappedDictionary[A]) ⇒ NewTo): Builder[(String, A), NewTo]
    Definition Classes
    Builder
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  27. def result(): WrappedDictionary[A]
    Definition Classes
    WrappedDictionaryBuilder → Builder
  28. def sizeHint(coll: TraversableLike[_, _], delta: Int): Unit
    Definition Classes
    Builder
  29. def sizeHint(coll: TraversableLike[_, _]): Unit
    Definition Classes
    Builder
  30. def sizeHint(size: Int): Unit
    Definition Classes
    Builder
  31. def sizeHintBounded(size: Int, boundingColl: TraversableLike[_, _]): Unit
    Definition Classes
    Builder
  32. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  33. def toParArray: ParArray[T]
    Implicit
    This member is added by an implicit conversion from WrappedDictionaryBuilder[A] to CollectionsHaveToParArray[WrappedDictionaryBuilder[A], T] performed by method CollectionsHaveToParArray in scala.collection.parallel. This conversion will take place only if an implicit value of type (WrappedDictionaryBuilder[A]) ⇒ GenTraversableOnce[T] is in scope.
    Definition Classes
    CollectionsHaveToParArray
  34. def toString(): String
    Definition Classes
    AnyRef → Any
  35. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. def [B](y: B): (WrappedDictionaryBuilder[A], B)
    Implicit
    This member is added by an implicit conversion from WrappedDictionaryBuilder[A] to ArrowAssoc[WrappedDictionaryBuilder[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from Builder[(String, A), WrappedDictionary[A]]

Inherited from Growable[(String, A)]

Inherited from Clearable

Inherited from AnyRef

Inherited from scala.Any

Inherited by implicit conversion CollectionsHaveToParArray from WrappedDictionaryBuilder[A] to CollectionsHaveToParArray[WrappedDictionaryBuilder[A], T]

Inherited by implicit conversion any2stringadd from WrappedDictionaryBuilder[A] to any2stringadd[WrappedDictionaryBuilder[A]]

Inherited by implicit conversion StringFormat from WrappedDictionaryBuilder[A] to StringFormat[WrappedDictionaryBuilder[A]]

Inherited by implicit conversion Ensuring from WrappedDictionaryBuilder[A] to Ensuring[WrappedDictionaryBuilder[A]]

Inherited by implicit conversion ArrowAssoc from WrappedDictionaryBuilder[A] to ArrowAssoc[WrappedDictionaryBuilder[A]]

Ungrouped