object DataProduct extends LowPriorityDataProduct
Encapsulating object for built-in implementations of DataProduct
- Source
- DataProduct.scala
- Note
DataProduct implementations provided in this object are available in the implicit scope
- Alphabetic
- By Inheritance
- DataProduct
- LowPriorityDataProduct
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
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
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- implicit val dataDataProduct: DataProduct[Data]
DataProduct implementation for Data
DataProduct implementation for Data
- Definition Classes
- LowPriorityDataProduct
- 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
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- 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
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- implicit def seqDataProduct[A](implicit arg0: DataProduct[A]): DataProduct[Seq[A]]
DataProduct implementation for any
Seq[A]whereAhas an implementation ofDataProduct. - final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- implicit def tuple10DataProduct[A, B, C, D, E, F, G, H, I, J](implicit arg0: DataProduct[A], arg1: DataProduct[B], arg2: DataProduct[C], arg3: DataProduct[D], arg4: DataProduct[E], arg5: DataProduct[F], arg6: DataProduct[G], arg7: DataProduct[H], arg8: DataProduct[I], arg9: DataProduct[J]): DataProduct[(A, B, C, D, E, F, G, H, I, J)]
DataProduct implementation for any scala.Tuple9 where each field has an implementation of
DataProduct. - implicit def tuple2DataProduct[A, B](implicit arg0: DataProduct[A], arg1: DataProduct[B]): DataProduct[(A, B)]
DataProduct implementation for any scala.Tuple2 where each field has an implementation of
DataProduct. - implicit def tuple3DataProduct[A, B, C](implicit arg0: DataProduct[A], arg1: DataProduct[B], arg2: DataProduct[C]): DataProduct[(A, B, C)]
DataProduct implementation for any scala.Tuple3 where each field has an implementation of
DataProduct. - implicit def tuple4DataProduct[A, B, C, D](implicit arg0: DataProduct[A], arg1: DataProduct[B], arg2: DataProduct[C], arg3: DataProduct[D]): DataProduct[(A, B, C, D)]
DataProduct implementation for any scala.Tuple4 where each field has an implementation of
DataProduct. - implicit def tuple5DataProduct[A, B, C, D, E](implicit arg0: DataProduct[A], arg1: DataProduct[B], arg2: DataProduct[C], arg3: DataProduct[D], arg4: DataProduct[E]): DataProduct[(A, B, C, D, E)]
DataProduct implementation for any scala.Tuple5 where each field has an implementation of
DataProduct. - implicit def tuple6DataProduct[A, B, C, D, E, F](implicit arg0: DataProduct[A], arg1: DataProduct[B], arg2: DataProduct[C], arg3: DataProduct[D], arg4: DataProduct[E], arg5: DataProduct[F]): DataProduct[(A, B, C, D, E, F)]
DataProduct implementation for any scala.Tuple6 where each field has an implementation of
DataProduct. - implicit def tuple7DataProduct[A, B, C, D, E, F, G](implicit arg0: DataProduct[A], arg1: DataProduct[B], arg2: DataProduct[C], arg3: DataProduct[D], arg4: DataProduct[E], arg5: DataProduct[F], arg6: DataProduct[G]): DataProduct[(A, B, C, D, E, F, G)]
DataProduct implementation for any scala.Tuple7 where each field has an implementation of
DataProduct. - implicit def tuple8DataProduct[A, B, C, D, E, F, G, H](implicit arg0: DataProduct[A], arg1: DataProduct[B], arg2: DataProduct[C], arg3: DataProduct[D], arg4: DataProduct[E], arg5: DataProduct[F], arg6: DataProduct[G], arg7: DataProduct[H]): DataProduct[(A, B, C, D, E, F, G, H)]
DataProduct implementation for any scala.Tuple8 where each field has an implementation of
DataProduct. - implicit def tuple9DataProduct[A, B, C, D, E, F, G, H, I](implicit arg0: DataProduct[A], arg1: DataProduct[B], arg2: DataProduct[C], arg3: DataProduct[D], arg4: DataProduct[E], arg5: DataProduct[F], arg6: DataProduct[G], arg7: DataProduct[H], arg8: DataProduct[I]): DataProduct[(A, B, C, D, E, F, G, H, I)]
DataProduct implementation for any scala.Tuple9 where each field has an implementation of
DataProduct. - implicit val userModuleDataProduct: DataProduct[BaseModule]
DataProduct implementation for BaseModule
- 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])
This is the documentation for Chisel.
Package structure
The chisel3 package presents the public API of Chisel. It contains the concrete core types
UInt,SInt,Bool,FixedPoint,Clock, andReg, the abstract typesBits,Aggregate, andData, and the aggregate typesBundleandVec.The Chisel package is a compatibility layer that attempts to provide chisel2 compatibility in chisel3.
Utility objects and methods are found in the
utilpackage.The
testerspackage defines the basic interface for chisel testers.