Creates a new local value. @param the type of the local value. @return the local value
()
| 92 | * @return the local value |
| 93 | */ |
| 94 | public static final <T> Local<T> apply() { |
| 95 | return new Local<>(); |
| 96 | } |
| 97 | |
| 98 | protected static final Optional<?>[] save() { |
| 99 | if (threadLocal == null) |
no outgoing calls