clone method

  1. @override
FloatingPointTF32 clone({
  1. String? name,
})
override

Creates a new LogicStructure with the same structure as this and cloned elements, optionally with the provided name.

It is expected that any implementation will override this in a way that returns the same type as itself.

Implementation

@override
FloatingPointTF32 clone({String? name}) => FloatingPointTF32(name: name);