Currently, Ops can only copy between the same RealType implementations. This is because the set/get methods only work on values of the same type. We could copy across different BooleanType implementations, though, as theirset/get methods work on boolean. This PR does just that.
Currently, Ops can only copy between the same
RealType
implementations. This is because theset
/get
methods only work on values of the same type. We could copy across differentBooleanType
implementations, though, as theirset
/get
methods work onboolean
. This PR does just that.