Closed seongahjo closed 3 months ago
Refactor customizeProperty works in order
ArbitraryBuilder API customizeProperty is affected by order from 1.1.0.
customizeProperty
For example, the results of two examples are different.
.setExp(StringValue::value, "abcdef") .customizeProperty(typedString<String>("value")) { it.map { str -> str.substring(0..2) } } result -> `abc`
.customizeProperty(typedString<String>("value")) { it.filter { value -> value.length > 5 } } .setExp(StringValue::value, "fixed") result -> "fixed"
Later
Summary
Refactor customizeProperty works in order
(Optional): Description
ArbitraryBuilder API
customizeProperty
is affected by order from 1.1.0.For example, the results of two examples are different.
How Has This Been Tested?
Is the Document updated?
Later