abstract class BitVectorLiteralFactory[T <: BitVector] extends AnyRef
Base class to create Bit Vector from literal
- Alphabetic
- By Inheritance
- BitVectorLiteralFactory
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new BitVectorLiteralFactory()
Abstract Value Members
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def apply(rangesValue: (Any, Any), _rangesValues: (Any, Any)*): T
- def apply(bitCount: BitCount, rangesValue: (Any, Any), _rangesValues: (Any, Any)*): T
- def apply(value: String): T
Create an hardware literal from string literal definition.
Create an hardware literal from string literal definition.
myUInt := U"0000_0101" // Base per default is binary => 5 myUInt := U"h1A" // Base could be x (base 16) // h (base 16) // d (base 10) // o (base 8) // b (base 2) myUInt := U"8'h1A"
- See also
Example: - def apply(value: BigInt, width: BitCount): T
Create an hardware literal from a Scala
BigInt
with a givenwidth
Create an hardware literal from a Scala
BigInt
with a givenwidth
- def apply(value: BigInt): T
Create an hardware literal from a Scala
BigInt
Create an hardware literal from a Scala
BigInt
- def apply(value: Long, width: BitCount): T
Create an hardware literal from a Scala
Long
with a givenwidth
Create an hardware literal from a Scala
Long
with a givenwidth
- def apply(value: Long): T
Create an hardware literal from a Scala
Long
Create an hardware literal from a Scala
Long
- def apply(value: Int, width: BitCount): T
Create an hardware literal from a Scala
Int
with a givenwidth
Create an hardware literal from a Scala
Int
with a givenwidth
- def apply(value: Int): T
Create an hardware literal from a Scala
Int
Create an hardware literal from a Scala
Int
- def applyTuples(on: T, rangesValues: Seq[(Any, Any)]): Unit
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)