(Object... args)
| 1947 | |
| 1948 | // OrderBook factory methods — varargs for flexible calling from transpiled code |
| 1949 | public io.github.ccxt.ws.WsOrderBook orderBook(Object... args) { |
| 1950 | Object snapshot = args.length > 0 ? args[0] : null; |
| 1951 | Object depth = args.length > 1 ? args[1] : null; |
| 1952 | return new io.github.ccxt.ws.WsOrderBook(snapshot, depth); |
| 1953 | } |
| 1954 | |
| 1955 | public io.github.ccxt.ws.WsOrderBook.IndexedOrderBook indexedOrderBook(Object... args) { |
| 1956 | Object snapshot = args.length > 0 ? args[0] : null; |
no outgoing calls
no test coverage detected