the opposite of linearize. Take a flat list of parameterized types and build up a human-readable String representation of them. Filters the names of classes through "cleaner"
(List<Class> typeInformation, Function<String, String> cleaner)
| 50 | |
| 51 | /** |
| 52 | * the opposite of linearize. Take a flat list of parameterized types and build up a human-readable String representation of them. Filters the names of classes through "cleaner" |
| 53 | */ |
| 54 | static public String fold(List<Class> typeInformation, Function<String, String> cleaner) { |
| 55 | return typeInformation == null ? "" : _fold(new ArrayList<>(typeInformation), cleaner); |
| 56 | } |
| 57 |
no test coverage detected