mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-14 12:58:37 +00:00
12 lines
313 B
Plaintext
12 lines
313 B
Plaintext
@startuml
|
|
package com.iluwatar.function.composition {
|
|
class App {
|
|
+ App()
|
|
+ main(args : String[]) {static}
|
|
}
|
|
class FunctionComposer {
|
|
+ FunctionComposer()
|
|
+ composeFunctions(f1 : Function<Integer, Integer>, f2 : Function<Integer, Integer>) : Function<Integer, Integer> {static}
|
|
}
|
|
}
|
|
@enduml |