c

firrtl.annotations

InstanceTarget

case class InstanceTarget(circuit: String, module: String, path: Seq[(Instance, OfModule)], instance: String, ofModule: String) extends IsModule with IsComponent with Product with Serializable

Points to an instance declaration of a module (termed an ofModule)

circuit

Encapsulating circuit

module

Root module (e.g. the base module of this target)

path

Path through instance/ofModules

instance

Name of the instance

ofModule

Name of the instance's module

Source
Target.scala
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. InstanceTarget
  2. Serializable
  3. Product
  4. Equals
  5. IsComponent
  6. IsModule
  7. IsMember
  8. CompleteTarget
  9. Target
  10. Named
  11. AnyRef
  12. Any
Implicitly
  1. by convertNamed2Target
  2. by convertTarget2Named
  3. by convertIsComponent2ComponentName
  4. by any2stringadd
  5. by StringFormat
  6. by Ensuring
  7. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new InstanceTarget(circuit: String, module: String, path: Seq[(Instance, OfModule)], instance: String, ofModule: String)

    circuit

    Encapsulating circuit

    module

    Root module (e.g. the base module of this target)

    path

    Path through instance/ofModules

    instance

    Name of the instance

    ofModule

    Name of the instance's module

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from InstanceTarget toany2stringadd[InstanceTarget] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (InstanceTarget, B)
    Implicit
    This member is added by an implicit conversion from InstanceTarget toArrowAssoc[InstanceTarget] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def addHierarchy(root: String, inst: String): InstanceTarget

    Adds another level of instance hierarchy Example: Given root=A and instance=b, transforms (Top, B)/c:C -> (Top, A)/b:B/c:C

    Adds another level of instance hierarchy Example: Given root=A and instance=b, transforms (Top, B)/c:C -> (Top, A)/b:B/c:C

    Definition Classes
    InstanceTargetIsModuleCompleteTarget
  7. def addReference(rt: ReferenceTarget): ReferenceTarget

    returns

    a ReferenceTarget referring to given reference within this instance

  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def asPath: Seq[(Instance, OfModule)]

    returns

    Creates a path, assuming all Instance and OfModules in this IsMember is used as a path

    Definition Classes
    InstanceTargetIsMember
  10. def asReference: ReferenceTarget

    returns

    a ReferenceTarget referring to this declaration of this instance

  11. val circuit: String

    returns

    The circuit of this target

    Definition Classes
    InstanceTargetCompleteTarget
  12. def circuitOpt: Option[String]

    returns

    Circuit name, if it exists

    Definition Classes
    InstanceTargetTarget
  13. def circuitTarget: CircuitTarget

    returns

    The CircuitTarget of this target's circuit

    Definition Classes
    CompleteTarget
  14. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  15. def complete: CompleteTarget

    returns

    Converts this Target into a CompleteTarget

    Definition Classes
    Target
  16. def encapsulatedBy(other: IsModule): Boolean

    Checks whether this is inside of other

    Checks whether this is inside of other

    Definition Classes
    Target
  17. def encapsulatingModule: String

    returns

    The ModuleTarget of the module that directly contains this component

    Definition Classes
    IsMember
  18. def encapsulatingModuleTarget: ModuleTarget
    Definition Classes
    IsMember
  19. def ensuring(cond: (InstanceTarget) => Boolean, msg: => Any): InstanceTarget
    Implicit
    This member is added by an implicit conversion from InstanceTarget toEnsuring[InstanceTarget] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  20. def ensuring(cond: (InstanceTarget) => Boolean): InstanceTarget
    Implicit
    This member is added by an implicit conversion from InstanceTarget toEnsuring[InstanceTarget] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  21. def ensuring(cond: Boolean, msg: => Any): InstanceTarget
    Implicit
    This member is added by an implicit conversion from InstanceTarget toEnsuring[InstanceTarget] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  22. def ensuring(cond: Boolean): InstanceTarget
    Implicit
    This member is added by an implicit conversion from InstanceTarget toEnsuring[InstanceTarget] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  23. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. def expr: Expression
    Implicit
    This member is added by an implicit conversion from InstanceTarget toComponentName performed by method convertIsComponent2ComponentName in firrtl.annotations.Target.
    Definition Classes
    ComponentName
  25. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  26. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  27. def getComplete: Option[CompleteTarget]

    returns

    If legal, convert this Target into a CompleteTarget

    Definition Classes
    CompleteTargetTarget
  28. def instOf(inst: String, of: String): InstanceTarget

    returns

    Creates a new Target, appending an instance and ofmodule

    Definition Classes
    InstanceTargetIsModule
  29. val instance: String
  30. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  31. def isLocal: Boolean

    Whether the target is directly instantiated in its root module

    Whether the target is directly instantiated in its root module

    Definition Classes
    IsComponentTarget
  32. def justPath: Seq[TargetToken]

    returns

    Tokens of just this member's path

    Definition Classes
    IsComponentIsMember
  33. def leafModule: String
    Definition Classes
    InstanceTargetIsMember
  34. def modify(circuitOpt: Option[String] = circuitOpt, moduleOpt: Option[String] = moduleOpt, tokens: Seq[TargetToken] = tokens): GenericTarget

    returns

    Returns a new GenericTarget with new values

    Definition Classes
    Target
  35. val module: String

    returns

    Root module, e.g. top-level module of this target

    Definition Classes
    InstanceTargetIsMember
  36. def moduleOpt: Option[String]

    returns

    Module name, if it exists

    Definition Classes
    InstanceTargetTarget
  37. def moduleTarget: ModuleTarget

    returns

    Member's top-level module target

    Definition Classes
    IsMember
  38. val name: String
    Implicit
    This member is added by an implicit conversion from InstanceTarget toComponentName performed by method convertIsComponent2ComponentName in firrtl.annotations.Target.
    Definition Classes
    ComponentName
  39. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  40. def notPath: Seq[Product with TargetToken with Serializable { def value: String }]

    returns

    Local tokens of what this member points (not a path)

    Definition Classes
    InstanceTargetIsMember
  41. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  42. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  43. val ofModule: String
  44. def ofModuleTarget: ModuleTarget

    returns

    a ModuleTarget referring to declaration of this ofModule

  45. val path: Seq[(Instance, OfModule)]

    returns

    Returns the instance hierarchy path, if one exists

    Definition Classes
    InstanceTargetIsMemberTarget
  46. def pathAsTargets: Seq[InstanceTarget]

    returns

    List of local Instance Targets refering to each instance/ofModule in this member's path

    Definition Classes
    IsMember
  47. def pathTarget: IsModule

    returns

    Member's path target

    Definition Classes
    IsComponentIsMember
  48. def pathlessTarget: InstanceTarget

    Returns the local form of this InstanceTarget

    Returns the local form of this InstanceTarget

    For example, given ~Top|Top/foo:Foo/bar:Bar,

    .pathlessTarget returns ~Top|Foo/bar:Bar

    This is useful for cases in which annotations must point to the module itself rather than an absolute *instance* of the module (e.g. deduplication).

    returns

    Same target without a path

    Definition Classes
    InstanceTargetIsMember
  49. def prettyPrint(tab: String = ""): String

    Pretty serialization, ideal for error messages.

    Pretty serialization, ideal for error messages. Cannot be deserialized.

    returns

    Human-readable serialization

    Definition Classes
    Target
  50. def productElementNames: Iterator[String]
    Definition Classes
    Product
  51. def ref(value: String): ReferenceTarget

    returns

    Creates a new Target, appending a ref

    Definition Classes
    InstanceTargetIsModule
  52. def serialize: String

    returns

    Human-readable serialization

    Definition Classes
    TargetNamed
  53. def setPathTarget(newPath: IsModule): InstanceTarget

    Resets this target to have a new path

    Resets this target to have a new path

    Definition Classes
    InstanceTargetIsMember
  54. def sharedRoot(other: Target): Boolean

    Share root module

    Share root module

    Definition Classes
    Target
  55. def stripHierarchy(n: Int): IsModule

    Removes n levels of instance hierarchy

    Removes n levels of instance hierarchy

    Example: n=1, transforms (Top, A)/b:B/c:C -> (Top, B)/c:C

    Definition Classes
    InstanceTargetIsComponent
  56. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  57. def targetParent: IsModule

    returns

    Member's parent target

    Definition Classes
    InstanceTargetIsMember
  58. def toGenericTarget: GenericTarget

    returns

    Converts this Target into a GenericTarget

    Definition Classes
    Target
  59. def toNamed: ComponentName

    returns

    Converts this Target into either a CircuitName, ModuleName, or ComponentName

    Definition Classes
    IsComponentTarget
  60. def toString(): String
    Definition Classes
    CompleteTarget → AnyRef → Any
  61. def toTarget: CompleteTarget
    Definition Classes
    CompleteTargetNamed
  62. def tokens: Seq[TargetToken]

    returns

    Target tokens

    Definition Classes
    IsComponentTarget
  63. def tryToComplete: Target

    returns

    Converts this Target into a CompleteTarget, or if it can't, return original Target

    Definition Classes
    Target
  64. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  65. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  66. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Shadowed Implicit Value Members

  1. def addHierarchy(root: String, instance: String): IsComponent

    Adds another level of instance hierarchy Example: Given root=A and instance=b, transforms (Top, B)/c:C -> (Top, A)/b:B/c:C

    Adds another level of instance hierarchy Example: Given root=A and instance=b, transforms (Top, B)/c:C -> (Top, A)/b:B/c:C

    Implicit
    This member is added by an implicit conversion from InstanceTarget toCompleteTarget performed by method convertNamed2Target in firrtl.annotations.Target.
    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:
    (instanceTarget: CompleteTarget).addHierarchy(root, instance)
    Definition Classes
    CompleteTarget
  2. def circuit: String

    returns

    The circuit of this target

    Implicit
    This member is added by an implicit conversion from InstanceTarget toCompleteTarget performed by method convertNamed2Target in firrtl.annotations.Target.
    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:
    (instanceTarget: CompleteTarget).circuit
    Definition Classes
    CompleteTarget
  3. def circuitOpt: Option[String]

    returns

    Circuit name, if it exists

    Implicit
    This member is added by an implicit conversion from InstanceTarget toCompleteTarget performed by method convertNamed2Target in firrtl.annotations.Target.
    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:
    (instanceTarget: CompleteTarget).circuitOpt
    Definition Classes
    Target
  4. def circuitTarget: CircuitTarget

    returns

    The CircuitTarget of this target's circuit

    Implicit
    This member is added by an implicit conversion from InstanceTarget toCompleteTarget performed by method convertNamed2Target in firrtl.annotations.Target.
    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:
    (instanceTarget: CompleteTarget).circuitTarget
    Definition Classes
    CompleteTarget
  5. def complete: CompleteTarget

    returns

    Converts this Target into a CompleteTarget

    Implicit
    This member is added by an implicit conversion from InstanceTarget toCompleteTarget performed by method convertNamed2Target in firrtl.annotations.Target.
    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:
    (instanceTarget: CompleteTarget).complete
    Definition Classes
    Target
  6. def encapsulatedBy(other: IsModule): Boolean

    Checks whether this is inside of other

    Checks whether this is inside of other

    Implicit
    This member is added by an implicit conversion from InstanceTarget toCompleteTarget performed by method convertNamed2Target in firrtl.annotations.Target.
    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:
    (instanceTarget: CompleteTarget).encapsulatedBy(other)
    Definition Classes
    Target
  7. def getComplete: Option[CompleteTarget]

    returns

    If legal, convert this Target into a CompleteTarget

    Implicit
    This member is added by an implicit conversion from InstanceTarget toCompleteTarget performed by method convertNamed2Target in firrtl.annotations.Target.
    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:
    (instanceTarget: CompleteTarget).getComplete
    Definition Classes
    CompleteTargetTarget
  8. def isLocal: Boolean

    Whether the target is directly instantiated in its root module

    Whether the target is directly instantiated in its root module

    Implicit
    This member is added by an implicit conversion from InstanceTarget toCompleteTarget performed by method convertNamed2Target in firrtl.annotations.Target.
    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:
    (instanceTarget: CompleteTarget).isLocal
    Definition Classes
    Target
  9. def modify(circuitOpt: Option[String] = circuitOpt, moduleOpt: Option[String] = moduleOpt, tokens: Seq[TargetToken] = tokens): GenericTarget

    returns

    Returns a new GenericTarget with new values

    Implicit
    This member is added by an implicit conversion from InstanceTarget toCompleteTarget performed by method convertNamed2Target in firrtl.annotations.Target.
    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:
    (instanceTarget: CompleteTarget).modify(circuitOpt, moduleOpt, tokens)
    Definition Classes
    Target
  10. val module: ModuleName
    Implicit
    This member is added by an implicit conversion from InstanceTarget toComponentName performed by method convertIsComponent2ComponentName in firrtl.annotations.Target.
    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:
    (instanceTarget: ComponentName).module
    Definition Classes
    ComponentName
  11. def moduleOpt: Option[String]

    returns

    Module name, if it exists

    Implicit
    This member is added by an implicit conversion from InstanceTarget toCompleteTarget performed by method convertNamed2Target in firrtl.annotations.Target.
    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:
    (instanceTarget: CompleteTarget).moduleOpt
    Definition Classes
    Target
  12. def path: Seq[(Instance, OfModule)]

    returns

    Returns the instance hierarchy path, if one exists

    Implicit
    This member is added by an implicit conversion from InstanceTarget toCompleteTarget performed by method convertNamed2Target in firrtl.annotations.Target.
    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:
    (instanceTarget: CompleteTarget).path
    Definition Classes
    Target
  13. def prettyPrint(tab: String = ""): String

    Pretty serialization, ideal for error messages.

    Pretty serialization, ideal for error messages. Cannot be deserialized.

    returns

    Human-readable serialization

    Implicit
    This member is added by an implicit conversion from InstanceTarget toCompleteTarget performed by method convertNamed2Target in firrtl.annotations.Target.
    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:
    (instanceTarget: CompleteTarget).prettyPrint(tab)
    Definition Classes
    Target
  14. def productElementNames: Iterator[String]
    Implicit
    This member is added by an implicit conversion from InstanceTarget toComponentName performed by method convertIsComponent2ComponentName in firrtl.annotations.Target.
    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:
    (instanceTarget: ComponentName).productElementNames
    Definition Classes
    Product
  15. def serialize: String

    returns

    Human-readable serialization

    Implicit
    This member is added by an implicit conversion from InstanceTarget toCompleteTarget performed by method convertNamed2Target in firrtl.annotations.Target.
    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:
    (instanceTarget: CompleteTarget).serialize
    Definition Classes
    TargetNamed
  16. def serialize: String
    Implicit
    This member is added by an implicit conversion from InstanceTarget toNamed performed by method convertTarget2Named in firrtl.annotations.Target.
    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:
    (instanceTarget: Named).serialize
    Definition Classes
    Named
  17. def serialize: String
    Implicit
    This member is added by an implicit conversion from InstanceTarget toComponentName performed by method convertIsComponent2ComponentName in firrtl.annotations.Target.
    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:
    (instanceTarget: ComponentName).serialize
    Definition Classes
    ComponentNameNamed
  18. def sharedRoot(other: Target): Boolean

    Share root module

    Share root module

    Implicit
    This member is added by an implicit conversion from InstanceTarget toCompleteTarget performed by method convertNamed2Target in firrtl.annotations.Target.
    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:
    (instanceTarget: CompleteTarget).sharedRoot(other)
    Definition Classes
    Target
  19. def toGenericTarget: GenericTarget

    returns

    Converts this Target into a GenericTarget

    Implicit
    This member is added by an implicit conversion from InstanceTarget toCompleteTarget performed by method convertNamed2Target in firrtl.annotations.Target.
    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:
    (instanceTarget: CompleteTarget).toGenericTarget
    Definition Classes
    Target
  20. def toNamed: Named

    returns

    Converts this Target into either a CircuitName, ModuleName, or ComponentName

    Implicit
    This member is added by an implicit conversion from InstanceTarget toCompleteTarget performed by method convertNamed2Target in firrtl.annotations.Target.
    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:
    (instanceTarget: CompleteTarget).toNamed
    Definition Classes
    Target
  21. def toString(): String
    Implicit
    This member is added by an implicit conversion from InstanceTarget toCompleteTarget performed by method convertNamed2Target in firrtl.annotations.Target.
    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:
    (instanceTarget: CompleteTarget).toString()
    Definition Classes
    CompleteTarget → AnyRef → Any
  22. def toTarget: CompleteTarget
    Implicit
    This member is added by an implicit conversion from InstanceTarget toCompleteTarget performed by method convertNamed2Target in firrtl.annotations.Target.
    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:
    (instanceTarget: CompleteTarget).toTarget
    Definition Classes
    CompleteTargetNamed
  23. def toTarget: CompleteTarget
    Implicit
    This member is added by an implicit conversion from InstanceTarget toNamed performed by method convertTarget2Named in firrtl.annotations.Target.
    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:
    (instanceTarget: Named).toTarget
    Definition Classes
    Named
  24. def toTarget: ReferenceTarget
    Implicit
    This member is added by an implicit conversion from InstanceTarget toComponentName performed by method convertIsComponent2ComponentName in firrtl.annotations.Target.
    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:
    (instanceTarget: ComponentName).toTarget
    Definition Classes
    ComponentNameNamed
  25. def tokens: Seq[TargetToken]

    returns

    Target tokens

    Implicit
    This member is added by an implicit conversion from InstanceTarget toCompleteTarget performed by method convertNamed2Target in firrtl.annotations.Target.
    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:
    (instanceTarget: CompleteTarget).tokens
    Definition Classes
    Target
  26. def tryToComplete: Target

    returns

    Converts this Target into a CompleteTarget, or if it can't, return original Target

    Implicit
    This member is added by an implicit conversion from InstanceTarget toCompleteTarget performed by method convertNamed2Target in firrtl.annotations.Target.
    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:
    (instanceTarget: CompleteTarget).tryToComplete
    Definition Classes
    Target

Deprecated Value Members

  1. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from InstanceTarget toStringFormat[InstanceTarget] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  2. def [B](y: B): (InstanceTarget, B)
    Implicit
    This member is added by an implicit conversion from InstanceTarget toArrowAssoc[InstanceTarget] 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.

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from IsComponent

Inherited from IsModule

Inherited from IsMember

Inherited from CompleteTarget

Inherited from Target

Inherited from Named

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion convertNamed2Target fromInstanceTarget to CompleteTarget

Inherited by implicit conversion convertTarget2Named fromInstanceTarget to Named

Inherited by implicit conversion convertIsComponent2ComponentName fromInstanceTarget to ComponentName

Inherited by implicit conversion any2stringadd fromInstanceTarget to any2stringadd[InstanceTarget]

Inherited by implicit conversion StringFormat fromInstanceTarget to StringFormat[InstanceTarget]

Inherited by implicit conversion Ensuring fromInstanceTarget to Ensuring[InstanceTarget]

Inherited by implicit conversion ArrowAssoc fromInstanceTarget to ArrowAssoc[InstanceTarget]

Ungrouped