A value to be cloned
Cloned data when exact type, otherwise null
Jeongho Nam - https://github.com/samchon
Clone a data with type checking.
Clones an instance following type T
, with type checking. If the target input
value or its member variable contains a class instance having methods, those
methods would not be cloned.
In such reason, when input
value is not matched with the type T
, it returns
null
value instead. Otherwise, there's no problem on the input
value, cloned
data would be returned.
A value to be cloned
Cloned data when exact type, otherwise null
Jeongho Nam - https://github.com/samchon
Clone a data with type checking.
Clones an instance following type
T
, with type checking. If the targetinput
value or its member variable contains a class instance having methods, those methods would not be cloned.In such reason, when
input
value is not matched with the typeT
, it returnsnull
value instead. Otherwise, there's no problem on theinput
value, cloned data would be returned.