Success<V extends Object, E extends Exception>.const$ constructor

const Success<V extends Object, E extends Exception>.const$(
  1. V wrapped, [
  2. Log log = const Log.const$(NotExist, '', {})
])

実行速度重視のための実装の const constructor.
そのため Log._monitor, Log._debug, Log._historyList は const で定義され 追加の操作ができず 最低限の情報(Log.classLocation, Log.functionLocation)しか利用できない.

Implementation

const Success.const$(this.wrapped, [this.log = const Log.const$(NotExist, '', {})]);