Int

object Int extends Int.Custom.Framework[Int]

Companion for scala.Int

This object also defines specialized custom containers for Int type, so the following code can run without boxing:


   val s: Int.~    = 1 <> 5

   val o: Int.Opt  = s.readRaw_?  // Holds Int.Opt(1)

   val l: Int.>< = s.><     // Holds (2,3,4,5)
Source
__.scala
class Object
trait Matchable
class Any

Member

trait _extension

Int Extension Methods

Extension methods universaly avaialble for type scala.Int

Source
_extension.scala
object Custom
Source
__.scala
object G

Raw Int Generic Specialized Containers

The generic containers are never used directly, but rather as customized shortcuts for specific types.

For example:

  • Int.G.><[Int] usually called as Int.><
  • Double.G.Idx[Percent] usually called as Percent.Idx
  • Int.G.Pro.Mutable[Day] usually called as Day.Pro.Mutable
  • Long.G.Collection[Time] usually called as Time.Collection
Source
__.scala

Alias

Inherited

type Buffer = Int.G.Buffer[A]

Specialized buffer

Specialized buffer

Already parameterized generic buffer

Inherited from
Framework
Source
__.scala

Specialized collection

Specialized collection

Already parameterized generic collection

Inherited from
Framework
Source
__.scala
inline def Collection: Int.Collection[Int]

Type companion

Type companion

Holds methods to construct type instances

Inherited from
Framework
Source
__.scala
final val Fun: Int.Fun[Int]

Specialized functions

Specialized functions

Already parameterized set of generic functions

Inherited from
Framework
Source
__.scala
type Idx = Int.G.Idx[A]

Specialized indexed collection

Specialized indexed collection

Already parameterized generic indexed collection

Inherited from
Framework
Source
__.scala
final val Idx: Int.Idx[Int]

Type companion

Type companion

Holds methods to construct type instances

Inherited from
Framework
Source
__.scala
type Lookup[B] = Int.G.Lookup[A, B]

Specialized lookup collection

Specialized lookup collection

Already parameterized generic lookup collection

Inherited from
Framework
Source
__.scala
final val Lookup: Int.Lookup[Int]

Type companion

Type companion

Holds methods to construct type instances

Inherited from
Framework
Source
__.scala
type Opt = Int.G.Opt[A]

Specialized option

Specialized option

Already parameterized generic option

Inherited from
Framework
Source
__.scala
final val Opt: Int.Opt[Int]

Type companion

Type companion

Holds methods to construct type instances

Inherited from
Framework
Source
__.scala

Parameterized J.Ordering

Parameterized J.Ordering

Already parameterized generic J.Ordering

Inherited from
Framework
Source
__.scala
type Pro = Int.G.Pro[A]

Specialized property

Specialized property

Already parameterized generic property

Inherited from
Framework
Source
__.scala
final val Pro: Int.Pro[Int]

Type companion

Type companion

Holds methods to construct type instances

Inherited from
Framework
Source
__.scala
type Promise = Promise[A]

Parameterized Val.Promise

Parameterized Val.Promise

Already parameterized generic Val.Promise

Inherited from
Framework
Source
__.scala
inline def Promise: Ref.Promise[Int]

Type companion

Type companion

Holds methods to construct type instances

Inherited from
Framework
Source
__.scala
type Result = Result.type[A]

Parameterized Val.Result

Parameterized Val.Result

Already parameterized generic Val.Result

Inherited from
Framework
Source
__.scala
inline def Result: Ref.Result[Int]

Type companion

Type companion

Holds methods to construct type instances

Inherited from
Framework
Source
__.scala

Type alias

Type alias

Shortcut to Collection.StableSet

Inherited from
Framework
Source
__.scala

Companion alias

Companion alias

Holds methods to construct type instances

Inherited from
Framework
Source
__.scala

Def

inline def math: Int.G.Math[Int]

Math interface

Math interface

Returns type math implementation

Source
__.scala
inline def max: Int

Maximum

Maximum

Returns type maximum value: 2 ^ 31 - 1

Source
__.scala
inline def min: Int

Minimum

Minimum

Returns type minimal value: -2 ^ 31

Source
__.scala
inline def ordering: Int.G.Math.Ordering[Int]

Ordering

Ordering

Returns type natural ordering

Source
__.scala

Inherited

inline def emptyArray: Array[Int]

Empty array

Empty array

Returns singleton scala.Array.emptyIntArray

Inherited from
Framework
Source
__.scala