Attributes
- Companion
- class
- Source
- Data.scala
- Graph
-
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
Data.type
Members list
Type members
Classlikes
Attributes
- Source
- Data.scala
- Supertypes
-
class Objecttrait Matchableclass Any
Provides :<=, :>=, :<>=, and :#= between consumer and producer of the same T <: Data
Provides :<=, :>=, :<>=, and :#= between consumer and producer of the same T <: Data
Attributes
- Source
- Data.scala
- Supertypes
-
class ConnectableOperators[T]class ConnectableOpExtension[T]class Objecttrait Matchableclass Any
Provides :<>=, :<=, :>=, and :#= between a (consumer: Vec) and (producer: Seq)
Provides :<>=, :<=, :>=, and :#= between a (consumer: Vec) and (producer: Seq)
Attributes
- Source
- Data.scala
- Supertypes
Provides generic, recursive equality for Bundle and Vec hardware. This avoids the need to use workarounds such as bundle1.asUInt === bundle2.asUInt by allowing users to instead write bundle1 === bundle2.
Provides generic, recursive equality for Bundle and Vec hardware. This avoids the need to use workarounds such as bundle1.asUInt === bundle2.asUInt by allowing users to instead write bundle1 === bundle2.
Static type safety of this comparison is guaranteed at compile time as the extension method requires the same parameterized type for both the left-hand and right-hand sides. It is, however, possible to get around this type safety using Bundle subtypes that can differ during runtime (e.g. through a generator). These cases are subsequently raised as elaboration errors.
Value parameters
- lhs
-
The Data hardware on the left-hand side of the equality
Attributes
- Source
- Data.scala
- Supertypes
-
class Objecttrait Matchableclass Any
Implicits
Implicits
Attributes
- Source
- Data.scala
Provides :<=, :>=, :<>=, and :#= between consumer and producer of the same T <: Data
Provides :<=, :>=, :<>=, and :#= between consumer and producer of the same T <: Data
Attributes
- Source
- Data.scala
Provides :<>=, :<=, :>=, and :#= between a (consumer: Vec) and (producer: Seq)
Provides :<>=, :<=, :>=, and :#= between a (consumer: Vec) and (producer: Seq)
Attributes
- Source
- Data.scala
Provides generic, recursive equality for Bundle and Vec hardware. This avoids the need to use workarounds such as bundle1.asUInt === bundle2.asUInt by allowing users to instead write bundle1 === bundle2.
Provides generic, recursive equality for Bundle and Vec hardware. This avoids the need to use workarounds such as bundle1.asUInt === bundle2.asUInt by allowing users to instead write bundle1 === bundle2.
Static type safety of this comparison is guaranteed at compile time as the extension method requires the same parameterized type for both the left-hand and right-hand sides. It is, however, possible to get around this type safety using Bundle subtypes that can differ during runtime (e.g. through a generator). These cases are subsequently raised as elaboration errors.
Value parameters
- lhs
-
The Data hardware on the left-hand side of the equality
Attributes
- Source
- Data.scala
Typeclass implementation of HasMatchingZipOfChildren for Data
Typeclass implementation of HasMatchingZipOfChildren for Data
The canonical API to iterate through two Chisel types or components, where matching children are provided together, while non-matching members are provided separately
Only zips immediate children (vs members, which are all children/grandchildren etc.)
Attributes
- Source
- Data.scala
Can implicitly convert a Data to a Connectable
Can implicitly convert a Data to a Connectable
Originally this was done with an implicit class, but all functions we want to add to Data we also want on Connectable, so an implicit conversion makes the most sense so the ScalaDoc can be shared.
Attributes
- Source
- Data.scala