final case class Addr(index: Int) extends AnyVal with Product with Serializable
An address pointing to an index in a Tasty buffer's byte array
- Source
- TastyRefs.scala
Linear Supertypes
Type Hierarchy
Ordering
- Alphabetic
- By Inheritance
Inherited
- Addr
- Serializable
- Product
- Equals
- AnyVal
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- def !=(that: Addr): Boolean
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- def +(delta: Int): Addr
- def -(delta: Int): Addr
- def ->[B](y: B): (Addr, B)
- def ==(that: Addr): Boolean
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def ensuring(cond: (Addr) => Boolean, msg: => Any): Addr
- def ensuring(cond: (Addr) => Boolean): Addr
- def ensuring(cond: Boolean, msg: => Any): Addr
- def ensuring(cond: Boolean): Addr
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- val index: Int
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def relativeTo(base: Addr): Addr
Shadowed Implicit Value Members
- def +(other: String): String
- Implicit
- This member is added by an implicit conversion from Addr toany2stringadd[Addr] performed by method any2stringadd in scala.Predef.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(addr: any2stringadd[Addr]).+(other)
- Definition Classes
- any2stringadd
Deprecated Value Members
- def formatted(fmtstr: String): String
- Implicit
- This member is added by an implicit conversion from Addr toStringFormat[Addr] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.12.16) Use
formatString.format(value)
instead ofvalue.formatted(formatString)
, or use thef""
string interpolator. In Java 15 and later,formatted
resolves to the new method in String which has reversed parameters.
- def →[B](y: B): (Addr, B)
- Implicit
- This member is added by an implicit conversion from Addr toArrowAssoc[Addr] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use
->
instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.
The Scala compiler and reflection APIs.