javonet-nodejs-sdk 2.5.14 → 2.5.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/core/delegatesCache/DelegatesCache.cjs +59 -0
- package/dist/core/handler/AbstractHandler.cjs +62 -0
- package/dist/core/handler/ArrayGetItemHandler.cjs +61 -0
- package/dist/core/handler/ArrayGetRankHandler.cjs +52 -0
- package/dist/core/handler/ArrayGetSizeHandler.cjs +52 -0
- package/dist/core/handler/ArrayHandler.cjs +41 -0
- package/dist/core/handler/ArraySetItemHandler.cjs +62 -0
- package/dist/core/handler/CastingHandler.cjs +34 -0
- package/dist/core/handler/ConvertTypeHandler.cjs +53 -0
- package/dist/core/handler/CreateClassInstanceHandler.cjs +62 -0
- package/dist/core/handler/DestructReferenceHandler.cjs +42 -0
- package/dist/core/handler/EnableNamespaceHandler.cjs +56 -0
- package/dist/core/handler/EnableTypeHandler.cjs +58 -0
- package/dist/core/handler/GetGlobalStaticFieldHandler.cjs +62 -0
- package/dist/core/handler/GetInstanceFieldHandler.cjs +61 -0
- package/dist/core/handler/GetInstanceMethodAsDelegateHandler.cjs +83 -0
- package/dist/core/handler/GetStaticFieldHandler.cjs +61 -0
- package/dist/core/handler/GetStaticMethodAsDelegateHandler.cjs +85 -0
- package/dist/core/handler/GetTypeHandler.cjs +87 -0
- package/dist/core/handler/Handler.cjs +136 -0
- package/dist/core/handler/InvokeDelegateHandler.cjs +53 -0
- package/dist/core/handler/InvokeGlobalFunctionHandler.cjs +62 -0
- package/dist/core/handler/InvokeInstanceMethodHandler.cjs +64 -0
- package/dist/core/handler/InvokeStaticMethodHandler.cjs +64 -0
- package/dist/core/handler/LoadLibraryHandler.cjs +71 -0
- package/dist/core/handler/PassDelegateHandler.cjs +164 -0
- package/dist/core/handler/ResolveReferenceHandler.cjs +41 -0
- package/dist/core/handler/SetGlobalStaticFieldHandler.cjs +63 -0
- package/dist/core/handler/SetInstanceFieldHandler.cjs +61 -0
- package/dist/core/handler/SetStaticFieldHandler.cjs +59 -0
- package/dist/core/handler/ValueHandler.cjs +37 -0
- package/dist/core/interpreter/Interpreter.cjs +163 -0
- package/dist/core/namespaceCache/NamespaceCache.cjs +61 -0
- package/dist/core/protocol/CommandDeserializer.cjs +188 -0
- package/dist/core/protocol/CommandSerializer.cjs +64 -0
- package/dist/core/protocol/TypeDeserializer.cjs +91 -0
- package/dist/core/protocol/TypeSerializer.cjs +153 -0
- package/dist/core/receiver/Receiver.cjs +65 -0
- package/dist/core/receiver/ReceiverNative.cjs +37 -0
- package/dist/core/referenceCache/ReferencesCache.cjs +65 -0
- package/dist/core/transmitter/Transmitter.cjs +44 -0
- package/dist/core/transmitter/TransmitterWebsocket.cjs +55 -0
- package/dist/core/transmitter/TransmitterWebsocketBrowser.cjs +59 -0
- package/dist/core/transmitter/TransmitterWrapper.cjs +75 -0
- package/dist/core/typeCache/TypeCache.cjs +61 -0
- package/dist/core/webSocketClient/WebSocketClient.cjs +150 -0
- package/dist/core/webSocketClient/WebSocketClientBrowser.cjs +153 -0
- package/dist/sdk/ConfigRuntimeFactory.cjs +209 -0
- package/dist/sdk/InvocationContext.cjs +495 -0
- package/dist/sdk/Javonet.cjs +150 -0
- package/dist/sdk/RuntimeContext.cjs +304 -0
- package/dist/sdk/RuntimeFactory.cjs +98 -0
- package/dist/sdk/tools/browser/ConfigSourceResolver.cjs +153 -0
- package/dist/sdk/tools/browser/SdkExceptionHelper.cjs +37 -0
- package/dist/sdk/tools/nodejs/JsonFileResolver.cjs +120 -0
- package/dist/sdk/tools/nodejs/SdkExceptionHelper.cjs +100 -0
- package/dist/types/core/delegatesCache/DelegatesCache.d.ts +21 -0
- package/dist/types/core/handler/AbstractHandler.d.ts +7 -0
- package/dist/types/core/handler/ArrayGetItemHandler.d.ts +5 -0
- package/dist/types/core/handler/ArrayGetRankHandler.d.ts +5 -0
- package/dist/types/core/handler/ArrayGetSizeHandler.d.ts +5 -0
- package/dist/types/core/handler/ArrayHandler.d.ts +4 -0
- package/dist/types/core/handler/ArraySetItemHandler.d.ts +5 -0
- package/dist/types/core/handler/CastingHandler.d.ts +3 -0
- package/dist/types/core/handler/ConvertTypeHandler.d.ts +22 -0
- package/dist/types/core/handler/CreateClassInstanceHandler.d.ts +5 -0
- package/dist/types/core/handler/DestructReferenceHandler.d.ts +4 -0
- package/dist/types/core/handler/EnableNamespaceHandler.d.ts +5 -0
- package/dist/types/core/handler/EnableTypeHandler.d.ts +5 -0
- package/dist/types/core/handler/GetGlobalStaticFieldHandler.d.ts +5 -0
- package/dist/types/core/handler/GetInstanceFieldHandler.d.ts +5 -0
- package/dist/types/core/handler/GetInstanceMethodAsDelegateHandler.d.ts +38 -0
- package/dist/types/core/handler/GetStaticFieldHandler.d.ts +5 -0
- package/dist/types/core/handler/GetStaticMethodAsDelegateHandler.d.ts +36 -0
- package/dist/types/core/handler/GetTypeHandler.d.ts +16 -0
- package/dist/types/core/handler/Handler.d.ts +27 -0
- package/dist/types/core/handler/InvokeDelegateHandler.d.ts +15 -0
- package/dist/types/core/handler/InvokeGlobalFunctionHandler.d.ts +5 -0
- package/dist/types/core/handler/InvokeInstanceMethodHandler.d.ts +5 -0
- package/dist/types/core/handler/InvokeStaticMethodHandler.d.ts +5 -0
- package/dist/types/core/handler/LoadLibraryHandler.d.ts +7 -0
- package/dist/types/core/handler/PassDelegateHandler.d.ts +104 -0
- package/dist/types/core/handler/ResolveReferenceHandler.d.ts +12 -0
- package/dist/types/core/handler/SetGlobalStaticFieldHandler.d.ts +4 -0
- package/dist/types/core/handler/SetInstanceFieldHandler.d.ts +5 -0
- package/dist/types/core/handler/SetStaticFieldHandler.d.ts +5 -0
- package/dist/types/core/handler/ValueHandler.d.ts +4 -0
- package/dist/types/core/interpreter/Interpreter.d.ts +27 -0
- package/dist/types/core/namespaceCache/NamespaceCache.d.ts +9 -0
- package/dist/types/core/protocol/CommandDeserializer.d.ts +25 -0
- package/dist/types/core/protocol/CommandSerializer.d.ts +4 -0
- package/dist/types/core/protocol/TypeDeserializer.d.ts +15 -0
- package/dist/types/core/protocol/TypeSerializer.d.ts +17 -0
- package/dist/types/core/receiver/Receiver.d.ts +14 -0
- package/dist/types/core/receiver/ReceiverNative.d.ts +4 -0
- package/dist/types/core/referenceCache/ReferencesCache.d.ts +24 -0
- package/dist/types/core/transmitter/Transmitter.d.ts +6 -0
- package/dist/types/core/transmitter/TransmitterWebsocket.d.ts +21 -0
- package/dist/types/core/transmitter/TransmitterWebsocketBrowser.d.ts +30 -0
- package/dist/types/core/transmitter/TransmitterWrapper.d.ts +11 -0
- package/dist/types/core/typeCache/TypeCache.d.ts +9 -0
- package/dist/types/core/webSocketClient/WebSocketClient.d.ts +50 -0
- package/dist/types/core/webSocketClient/WebSocketClientBrowser.d.ts +63 -0
- package/dist/types/sdk/ConfigRuntimeFactory.d.ts +73 -0
- package/dist/types/sdk/InvocationContext.d.ts +207 -0
- package/dist/types/sdk/Javonet.d.ts +63 -0
- package/dist/types/sdk/RuntimeContext.d.ts +103 -0
- package/dist/types/sdk/RuntimeFactory.d.ts +58 -0
- package/dist/types/sdk/tools/browser/ConfigSourceResolver.d.ts +46 -0
- package/dist/types/sdk/tools/browser/SdkExceptionHelper.d.ts +7 -0
- package/dist/types/sdk/tools/nodejs/JsonFileResolver.d.ts +13 -0
- package/dist/types/sdk/tools/nodejs/SdkExceptionHelper.d.ts +6 -0
- package/dist/types/utils/Command.d.ts +42 -0
- package/dist/types/utils/CommandType.d.ts +44 -0
- package/dist/types/utils/ConnectionType.d.ts +5 -0
- package/dist/types/utils/CustomError.d.ts +3 -0
- package/dist/types/utils/ExceptionType.d.ts +10 -0
- package/dist/types/utils/Runtime.d.ts +24 -0
- package/dist/types/utils/RuntimeLogger.d.ts +5 -0
- package/dist/types/utils/RuntimeLoggerBrowser.d.ts +15 -0
- package/dist/types/utils/RuntimeName.d.ts +13 -0
- package/dist/types/utils/RuntimeNameHandler.d.ts +7 -0
- package/dist/types/utils/StringEncodingMode.d.ts +6 -0
- package/dist/types/utils/Type.d.ts +14 -0
- package/dist/types/utils/connectionData/IConnectionData.d.ts +5 -0
- package/dist/types/utils/connectionData/InMemoryConnectionData.d.ts +16 -0
- package/dist/types/utils/connectionData/WsConnectionData.d.ts +31 -0
- package/dist/types/utils/exception/ExceptionSerializer.d.ts +6 -0
- package/dist/types/utils/exception/ExceptionThrower.d.ts +4 -0
- package/dist/types/utils/guid/generateGuid.d.ts +1 -0
- package/dist/types/utils/nodejs/TypesConverter.d.ts +48 -0
- package/dist/types/utils/nodejs/connectionData/TcpConnectionData.d.ts +25 -0
- package/dist/types/utils/nodejs/uuid/REGEX.d.ts +1 -0
- package/dist/types/utils/nodejs/uuid/rng.d.ts +1 -0
- package/dist/types/utils/nodejs/uuid/stringify.d.ts +1 -0
- package/dist/types/utils/nodejs/uuid/v4.d.ts +1 -0
- package/dist/types/utils/nodejs/uuid/validate.d.ts +1 -0
- package/dist/utils/Command.cjs +87 -0
- package/dist/utils/CommandType.cjs +74 -0
- package/dist/utils/ConnectionType.cjs +35 -0
- package/dist/utils/CustomError.cjs +33 -0
- package/dist/utils/ExceptionType.cjs +40 -0
- package/dist/utils/Runtime.cjs +103 -0
- package/dist/utils/RuntimeLogger.cjs +63 -0
- package/dist/utils/RuntimeLoggerBrowser.cjs +58 -0
- package/dist/utils/RuntimeName.cjs +43 -0
- package/dist/utils/RuntimeNameHandler.cjs +62 -0
- package/dist/utils/StringEncodingMode.cjs +36 -0
- package/dist/utils/Type.cjs +44 -0
- package/dist/utils/connectionData/IConnectionData.cjs +38 -0
- package/dist/utils/connectionData/InMemoryConnectionData.cjs +52 -0
- package/dist/utils/connectionData/WsConnectionData.cjs +61 -0
- package/dist/utils/exception/ExceptionSerializer.cjs +82 -0
- package/dist/utils/exception/ExceptionThrower.cjs +111 -0
- package/dist/utils/guid/generateGuid.cjs +34 -0
- package/dist/utils/nodejs/TypesConverter.cjs +102 -0
- package/dist/utils/nodejs/connectionData/TcpConnectionData.cjs +111 -0
- package/dist/utils/nodejs/uuid/REGEX.cjs +28 -0
- package/dist/utils/nodejs/uuid/rng.cjs +47 -0
- package/dist/utils/nodejs/uuid/stringify.cjs +39 -0
- package/dist/utils/nodejs/uuid/v4.cjs +43 -0
- package/dist/utils/nodejs/uuid/validate.cjs +31 -0
- package/lib/core/delegatesCache/DelegatesCache.js +37 -0
- package/lib/core/handler/AbstractHandler.js +2 -2
- package/lib/core/handler/ArrayGetItemHandler.js +2 -2
- package/lib/core/handler/ArrayGetRankHandler.js +2 -2
- package/lib/core/handler/ArrayGetSizeHandler.js +2 -2
- package/lib/core/handler/ArrayHandler.js +2 -2
- package/lib/core/handler/ArraySetItemHandler.js +2 -2
- package/lib/core/handler/CastingHandler.js +2 -2
- package/lib/core/handler/ConvertTypeHandler.js +3 -3
- package/lib/core/handler/CreateClassInstanceHandler.js +4 -2
- package/lib/core/handler/DestructReferenceHandler.js +3 -3
- package/lib/core/handler/EnableNamespaceHandler.js +3 -3
- package/lib/core/handler/EnableTypeHandler.js +3 -3
- package/lib/core/handler/GetGlobalStaticFieldHandler.js +2 -2
- package/lib/core/handler/GetInstanceFieldHandler.js +2 -2
- package/lib/core/handler/GetInstanceMethodAsDelegateHandler.js +2 -2
- package/lib/core/handler/GetStaticFieldHandler.js +3 -2
- package/lib/core/handler/GetStaticMethodAsDelegateHandler.js +2 -3
- package/lib/core/handler/GetTypeHandler.js +16 -7
- package/lib/core/handler/Handler.js +91 -60
- package/lib/core/handler/InvokeDelegateHandler.js +4 -4
- package/lib/core/handler/InvokeGlobalFunctionHandler.js +3 -5
- package/lib/core/handler/InvokeInstanceMethodHandler.js +2 -2
- package/lib/core/handler/InvokeStaticMethodHandler.js +2 -2
- package/lib/core/handler/LoadLibraryHandler.js +7 -4
- package/lib/core/handler/PassDelegateHandler.js +38 -24
- package/lib/core/handler/ResolveReferenceHandler.js +13 -3
- package/lib/core/handler/SetGlobalStaticFieldHandler.js +2 -2
- package/lib/core/handler/SetInstanceFieldHandler.js +2 -2
- package/lib/core/handler/SetStaticFieldHandler.js +2 -2
- package/lib/core/handler/ValueHandler.js +2 -2
- package/lib/core/interpreter/Interpreter.js +164 -0
- package/lib/core/namespaceCache/NamespaceCache.js +1 -1
- package/lib/core/protocol/CommandDeserializer.js +180 -0
- package/lib/core/protocol/CommandSerializer.js +48 -0
- package/lib/core/protocol/TypeDeserializer.js +81 -0
- package/lib/core/protocol/TypeSerializer.js +143 -0
- package/lib/core/receiver/Receiver.js +17 -8
- package/lib/core/receiver/ReceiverNative.js +2 -2
- package/lib/core/referenceCache/ReferencesCache.js +27 -4
- package/lib/core/transmitter/Transmitter.js +6 -8
- package/lib/core/transmitter/TransmitterWebsocket.js +2 -6
- package/lib/core/transmitter/TransmitterWebsocketBrowser.js +39 -0
- package/lib/core/transmitter/TransmitterWrapper.js +26 -13
- package/lib/core/typeCache/TypeCache.js +1 -1
- package/lib/core/webSocketClient/WebSocketClient.js +56 -24
- package/lib/core/webSocketClient/WebSocketClientBrowser.js +174 -0
- package/lib/declarations.d.ts +35 -0
- package/lib/sdk/ConfigRuntimeFactory.js +118 -58
- package/lib/sdk/InvocationContext.js +487 -0
- package/lib/sdk/Javonet.js +64 -30
- package/lib/sdk/RuntimeContext.js +289 -0
- package/lib/sdk/RuntimeFactory.js +12 -5
- package/lib/sdk/tools/browser/ConfigSourceResolver.js +146 -0
- package/lib/sdk/tools/browser/SdkExceptionHelper.js +20 -0
- package/lib/sdk/tools/nodejs/JsonFileResolver.js +106 -0
- package/lib/sdk/tools/nodejs/SdkExceptionHelper.js +89 -0
- package/lib/utils/Command.js +67 -0
- package/lib/utils/CommandType.js +45 -0
- package/lib/utils/ConnectionType.js +6 -0
- package/lib/utils/CustomError.js +6 -0
- package/lib/utils/ExceptionType.js +13 -0
- package/lib/utils/Runtime.js +94 -0
- package/lib/utils/RuntimeLogger.js +19 -9
- package/lib/utils/RuntimeLoggerBrowser.js +35 -0
- package/lib/utils/RuntimeName.js +14 -0
- package/lib/utils/RuntimeNameHandler.js +38 -0
- package/lib/utils/StringEncodingMode.js +7 -0
- package/lib/utils/Type.js +15 -0
- package/lib/utils/connectionData/IConnectionData.js +13 -0
- package/lib/utils/connectionData/InMemoryConnectionData.js +35 -0
- package/lib/utils/connectionData/WsConnectionData.js +48 -0
- package/lib/utils/exception/ExceptionSerializer.js +64 -0
- package/lib/utils/exception/ExceptionThrower.js +96 -0
- package/lib/utils/guid/generateGuid.js +9 -0
- package/lib/utils/nodejs/TypesConverter.js +91 -0
- package/lib/utils/nodejs/connectionData/TcpConnectionData.js +89 -0
- package/lib/utils/nodejs/uuid/REGEX.js +2 -0
- package/lib/utils/nodejs/uuid/rng.js +23 -0
- package/lib/utils/nodejs/uuid/stringify.js +51 -0
- package/lib/utils/nodejs/uuid/v4.js +26 -0
- package/lib/utils/nodejs/uuid/validate.js +7 -0
- package/package.json +59 -47
- package/Binaries/Clr/Javonet.Clr.Utils.dll +0 -0
- package/Binaries/Clr/JavonetClrRuntime.dll +0 -0
- package/Binaries/Jvm/JavonetJvmRuntime.jar +0 -0
- package/Binaries/Native/Linux/ARM64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
- package/Binaries/Native/Linux/ARM64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
- package/Binaries/Native/Linux/ARM64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
- package/Binaries/Native/Linux/ARM64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
- package/Binaries/Native/Linux/ARM64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
- package/Binaries/Native/Linux/ARM64/NetVersionLatest.runtimeconfig.json +0 -10
- package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
- package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
- package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
- package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
- package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
- package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
- package/Binaries/Native/Linux/ARM64/libJavonetActivationService.so +0 -0
- package/Binaries/Native/Linux/ARM64/libJavonetCppRuntimeNative.so +0 -0
- package/Binaries/Native/Linux/ARM64/libJavonetGoRuntimeNative.so +0 -0
- package/Binaries/Native/Linux/ARM64/libJavonetJvmRuntimeNative.so +0 -0
- package/Binaries/Native/Linux/ARM64/libJavonetNetcoreRuntimeNative.so +0 -0
- package/Binaries/Native/Linux/ARM64/libJavonetPythonRuntimeNative.so +0 -0
- package/Binaries/Native/Linux/ARM64/libJavonetRuby278RuntimeNative.so +0 -0
- package/Binaries/Native/Linux/ARM64/libJavonetRubyRuntimeNative.so +0 -0
- package/Binaries/Native/Linux/ARM64/libJavonetTcpClient.so +0 -0
- package/Binaries/Native/Linux/ARM64/libJavonetTcpTlsClient.so +0 -0
- package/Binaries/Native/Linux/ARM64/libUtils.so +0 -0
- package/Binaries/Native/Linux/ARM64/libnethost.so +0 -0
- package/Binaries/Native/Linux/ARM64/libpython3.12.so.1.0 +0 -0
- package/Binaries/Native/Linux/ARM64/version.txt +0 -1
- package/Binaries/Native/Linux/X64/NativeUtilsUnitTests.xml +0 -33
- package/Binaries/Native/Linux/X64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
- package/Binaries/Native/Linux/X64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
- package/Binaries/Native/Linux/X64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
- package/Binaries/Native/Linux/X64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
- package/Binaries/Native/Linux/X64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
- package/Binaries/Native/Linux/X64/NetVersionLatest.runtimeconfig.json +0 -10
- package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
- package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
- package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
- package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
- package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
- package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
- package/Binaries/Native/Linux/X64/libJavonetActivationService.so +0 -0
- package/Binaries/Native/Linux/X64/libJavonetCppRuntimeNative.so +0 -0
- package/Binaries/Native/Linux/X64/libJavonetGoRuntimeNative.so +0 -0
- package/Binaries/Native/Linux/X64/libJavonetJvmRuntimeNative.so +0 -0
- package/Binaries/Native/Linux/X64/libJavonetNetcoreRuntimeNative.so +0 -0
- package/Binaries/Native/Linux/X64/libJavonetNodejs1816RuntimeNative.so +0 -0
- package/Binaries/Native/Linux/X64/libJavonetNodejsRuntimeNative.so +0 -0
- package/Binaries/Native/Linux/X64/libJavonetPerlRuntimeNative.so +0 -0
- package/Binaries/Native/Linux/X64/libJavonetPythonRuntimeNative.so +0 -0
- package/Binaries/Native/Linux/X64/libJavonetRuby278RuntimeNative.so +0 -0
- package/Binaries/Native/Linux/X64/libJavonetRubyRuntimeNative.so +0 -0
- package/Binaries/Native/Linux/X64/libJavonetTcpClient.so +0 -0
- package/Binaries/Native/Linux/X64/libJavonetTcpTlsClient.so +0 -0
- package/Binaries/Native/Linux/X64/libUtils.so +0 -0
- package/Binaries/Native/Linux/X64/libnethost.so +0 -0
- package/Binaries/Native/Linux/X64/libnode.so.108 +0 -0
- package/Binaries/Native/Linux/X64/libperl.so.5.30.0 +0 -0
- package/Binaries/Native/Linux/X64/libpython3.11.so.1.0 +0 -0
- package/Binaries/Native/Linux/X64/libruby.so.2.7.8 +0 -0
- package/Binaries/Native/Linux/X64/openssl3/libJavonetActivationService.so +0 -0
- package/Binaries/Native/Linux/X64/openssl3/libJavonetTcpTlsClient.so +0 -0
- package/Binaries/Native/Linux/X64/openssl3/libUtils.so +0 -0
- package/Binaries/Native/Linux/X64/version.txt +0 -1
- package/Binaries/Native/MacOs/X64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
- package/Binaries/Native/MacOs/X64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
- package/Binaries/Native/MacOs/X64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
- package/Binaries/Native/MacOs/X64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
- package/Binaries/Native/MacOs/X64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
- package/Binaries/Native/MacOs/X64/NetVersionLatest.runtimeconfig.json +0 -10
- package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
- package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
- package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
- package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
- package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
- package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
- package/Binaries/Native/MacOs/X64/libJavonetActivationService.dylib +0 -0
- package/Binaries/Native/MacOs/X64/libJavonetCppRuntimeNative.dylib +0 -0
- package/Binaries/Native/MacOs/X64/libJavonetGoRuntimeNative.dylib +0 -0
- package/Binaries/Native/MacOs/X64/libJavonetJvmRuntimeNative.dylib +0 -0
- package/Binaries/Native/MacOs/X64/libJavonetNetcoreRuntimeNative.dylib +0 -0
- package/Binaries/Native/MacOs/X64/libJavonetNodejs1816RuntimeNative.dylib +0 -0
- package/Binaries/Native/MacOs/X64/libJavonetNodejsRuntimeNative.dylib +0 -0
- package/Binaries/Native/MacOs/X64/libJavonetPerlRuntimeNative.dylib +0 -0
- package/Binaries/Native/MacOs/X64/libJavonetPythonRuntimeNative.dylib +0 -0
- package/Binaries/Native/MacOs/X64/libJavonetRuby278RuntimeNative.dylib +0 -0
- package/Binaries/Native/MacOs/X64/libJavonetRubyRuntimeNative.dylib +0 -0
- package/Binaries/Native/MacOs/X64/libJavonetTcpClient.dylib +0 -0
- package/Binaries/Native/MacOs/X64/libJavonetTcpTlsClient.dylib +0 -0
- package/Binaries/Native/MacOs/X64/libUtils.dylib +0 -0
- package/Binaries/Native/MacOs/X64/libnethost.dylib +0 -0
- package/Binaries/Native/MacOs/X64/libnode.108.dylib +0 -0
- package/Binaries/Native/MacOs/X64/libpython3.11.dylib +0 -0
- package/Binaries/Native/MacOs/X64/libruby.2.7.dylib +0 -0
- package/Binaries/Native/MacOs/X64/version.txt +0 -1
- package/Binaries/Native/Windows/ARM64/JavonetActivationService.dll +0 -0
- package/Binaries/Native/Windows/ARM64/JavonetCppRuntimeNative.dll +0 -0
- package/Binaries/Native/Windows/ARM64/JavonetGoRuntimeNative.dll +0 -0
- package/Binaries/Native/Windows/ARM64/JavonetJvmRuntimeNative.dll +0 -0
- package/Binaries/Native/Windows/ARM64/JavonetNetcoreRuntimeNative.dll +0 -0
- package/Binaries/Native/Windows/ARM64/JavonetPythonRuntimeNative.dll +0 -0
- package/Binaries/Native/Windows/ARM64/JavonetRuby278RuntimeNative.dll +0 -0
- package/Binaries/Native/Windows/ARM64/JavonetRubyRuntimeNative.dll +0 -0
- package/Binaries/Native/Windows/ARM64/JavonetTcpClient.dll +0 -0
- package/Binaries/Native/Windows/ARM64/JavonetTcpTlsClient.dll +0 -0
- package/Binaries/Native/Windows/ARM64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
- package/Binaries/Native/Windows/ARM64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
- package/Binaries/Native/Windows/ARM64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
- package/Binaries/Native/Windows/ARM64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
- package/Binaries/Native/Windows/ARM64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
- package/Binaries/Native/Windows/ARM64/NetVersionLatest.runtimeconfig.json +0 -10
- package/Binaries/Native/Windows/ARM64/Utils.dll +0 -0
- package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
- package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
- package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
- package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
- package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
- package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
- package/Binaries/Native/Windows/ARM64/libcrypto-3-arm64.dll +0 -0
- package/Binaries/Native/Windows/ARM64/libssl-3-arm64.dll +0 -0
- package/Binaries/Native/Windows/ARM64/libxml2.dll +0 -0
- package/Binaries/Native/Windows/ARM64/libxmlsec-openssl.dll +0 -0
- package/Binaries/Native/Windows/ARM64/libxmlsec.dll +0 -0
- package/Binaries/Native/Windows/ARM64/libxslt.dll +0 -0
- package/Binaries/Native/Windows/ARM64/nethost.dll +0 -0
- package/Binaries/Native/Windows/ARM64/python312.dll +0 -0
- package/Binaries/Native/Windows/ARM64/version.txt +0 -0
- package/Binaries/Native/Windows/X64/JavonetActivationService.dll +0 -0
- package/Binaries/Native/Windows/X64/JavonetClrRuntimeNative.dll +0 -0
- package/Binaries/Native/Windows/X64/JavonetCppRuntimeNative.dll +0 -0
- package/Binaries/Native/Windows/X64/JavonetGoRuntimeNative.dll +0 -0
- package/Binaries/Native/Windows/X64/JavonetJvmRuntimeNative.dll +0 -0
- package/Binaries/Native/Windows/X64/JavonetNetcoreRuntimeNative.dll +0 -0
- package/Binaries/Native/Windows/X64/JavonetNodejs1816RuntimeNative.dll +0 -0
- package/Binaries/Native/Windows/X64/JavonetNodejsRuntimeNative.dll +0 -0
- package/Binaries/Native/Windows/X64/JavonetPerlRuntimeNative.dll +0 -0
- package/Binaries/Native/Windows/X64/JavonetPerlRuntimeNativeAuxiliary.dll +0 -0
- package/Binaries/Native/Windows/X64/JavonetPythonRuntimeNative.dll +0 -0
- package/Binaries/Native/Windows/X64/JavonetRuby278RuntimeNative.dll +0 -0
- package/Binaries/Native/Windows/X64/JavonetRubyRuntimeNative.dll +0 -0
- package/Binaries/Native/Windows/X64/JavonetRubyRuntimeNativeAuxiliary.dll +0 -0
- package/Binaries/Native/Windows/X64/JavonetTcpClient.dll +0 -0
- package/Binaries/Native/Windows/X64/JavonetTcpTlsClient.dll +0 -0
- package/Binaries/Native/Windows/X64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
- package/Binaries/Native/Windows/X64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
- package/Binaries/Native/Windows/X64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
- package/Binaries/Native/Windows/X64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
- package/Binaries/Native/Windows/X64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
- package/Binaries/Native/Windows/X64/NetVersionLatest.runtimeconfig.json +0 -10
- package/Binaries/Native/Windows/X64/Utils.dll +0 -0
- package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
- package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
- package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
- package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
- package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
- package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
- package/Binaries/Native/Windows/X64/libcrypto-3-x64.dll +0 -0
- package/Binaries/Native/Windows/X64/libnode.dll +0 -0
- package/Binaries/Native/Windows/X64/libssl-3-x64.dll +0 -0
- package/Binaries/Native/Windows/X64/libxml2.dll +0 -0
- package/Binaries/Native/Windows/X64/libxmlsec-openssl.dll +0 -0
- package/Binaries/Native/Windows/X64/libxmlsec.dll +0 -0
- package/Binaries/Native/Windows/X64/libxslt.dll +0 -0
- package/Binaries/Native/Windows/X64/nethost.dll +0 -0
- package/Binaries/Native/Windows/X64/python312.dll +0 -0
- package/Binaries/Native/Windows/X64/version.txt +0 -1
- package/Binaries/Native/Windows/X64/x64-msvcrt-ruby270.dll +0 -0
- package/Binaries/Native/Windows/X86/JavonetActivationService.dll +0 -0
- package/Binaries/Native/Windows/X86/JavonetClrRuntimeNative.dll +0 -0
- package/Binaries/Native/Windows/X86/JavonetCppRuntimeNative.dll +0 -0
- package/Binaries/Native/Windows/X86/JavonetGoRuntimeNative.dll +0 -0
- package/Binaries/Native/Windows/X86/JavonetJvmRuntimeNative.dll +0 -0
- package/Binaries/Native/Windows/X86/JavonetNetcoreRuntimeNative.dll +0 -0
- package/Binaries/Native/Windows/X86/JavonetPythonRuntimeNative.dll +0 -0
- package/Binaries/Native/Windows/X86/JavonetTcpClient.dll +0 -0
- package/Binaries/Native/Windows/X86/JavonetTcpTlsClient.dll +0 -0
- package/Binaries/Native/Windows/X86/NetVersion31LatestPatch.runtimeconfig.json +0 -10
- package/Binaries/Native/Windows/X86/NetVersion60LatestPatch.runtimeconfig.json +0 -10
- package/Binaries/Native/Windows/X86/NetVersion70LatestPatch.runtimeconfig.json +0 -10
- package/Binaries/Native/Windows/X86/NetVersion80LatestPatch.runtimeconfig.json +0 -10
- package/Binaries/Native/Windows/X86/NetVersion90LatestPatch.runtimeconfig.json +0 -10
- package/Binaries/Native/Windows/X86/NetVersionLatest.runtimeconfig.json +0 -10
- package/Binaries/Native/Windows/X86/Utils.dll +0 -0
- package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Linux/jni.h +0 -1960
- package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
- package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
- package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
- package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Windows/jni.h +0 -1960
- package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
- package/Binaries/Native/Windows/X86/libcrypto-3.dll +0 -0
- package/Binaries/Native/Windows/X86/libssl-3.dll +0 -0
- package/Binaries/Native/Windows/X86/libxml2.dll +0 -0
- package/Binaries/Native/Windows/X86/libxmlsec-openssl.dll +0 -0
- package/Binaries/Native/Windows/X86/libxmlsec.dll +0 -0
- package/Binaries/Native/Windows/X86/libxslt.dll +0 -0
- package/Binaries/Native/Windows/X86/nethost.dll +0 -0
- package/Binaries/Native/Windows/X86/python312.dll +0 -0
- package/Binaries/Native/Windows/X86/version.txt +0 -1
- package/Binaries/Netcore/Javonet.Netcore.Core.dll +0 -0
- package/Binaries/Netcore/Javonet.Netcore.Utils.dll +0 -0
- package/Binaries/Nodejs/index.js +0 -66
- package/Binaries/Nodejs/lib/core/delegatesCache/DelegatesCache.js +0 -35
- package/Binaries/Nodejs/lib/core/handler/AbstractHandler.js +0 -41
- package/Binaries/Nodejs/lib/core/handler/ArrayGetItemHandler.js +0 -38
- package/Binaries/Nodejs/lib/core/handler/ArrayGetRankHandler.js +0 -28
- package/Binaries/Nodejs/lib/core/handler/ArrayGetSizeHandler.js +0 -29
- package/Binaries/Nodejs/lib/core/handler/ArrayHandler.js +0 -18
- package/Binaries/Nodejs/lib/core/handler/ArraySetItemHandler.js +0 -43
- package/Binaries/Nodejs/lib/core/handler/CastingHandler.js +0 -10
- package/Binaries/Nodejs/lib/core/handler/ConvertTypeHandler.js +0 -38
- package/Binaries/Nodejs/lib/core/handler/CreateClassInstanceHandler.js +0 -36
- package/Binaries/Nodejs/lib/core/handler/DestructReferenceHandler.js +0 -19
- package/Binaries/Nodejs/lib/core/handler/EnableNamespaceHandler.js +0 -34
- package/Binaries/Nodejs/lib/core/handler/EnableTypeHandler.js +0 -35
- package/Binaries/Nodejs/lib/core/handler/GetGlobalStaticFieldHandler.js +0 -37
- package/Binaries/Nodejs/lib/core/handler/GetInstanceFieldHandler.js +0 -35
- package/Binaries/Nodejs/lib/core/handler/GetInstanceMethodAsDelegateHandler.js +0 -73
- package/Binaries/Nodejs/lib/core/handler/GetStaticFieldHandler.js +0 -36
- package/Binaries/Nodejs/lib/core/handler/GetStaticMethodAsDelegateHandler.js +0 -74
- package/Binaries/Nodejs/lib/core/handler/GetTypeHandler.js +0 -63
- package/Binaries/Nodejs/lib/core/handler/Handler.js +0 -98
- package/Binaries/Nodejs/lib/core/handler/InvokeDelegateHandler.js +0 -36
- package/Binaries/Nodejs/lib/core/handler/InvokeGlobalFunctionHandler.js +0 -39
- package/Binaries/Nodejs/lib/core/handler/InvokeInstanceMethodHandler.js +0 -38
- package/Binaries/Nodejs/lib/core/handler/InvokeStaticMethodHandler.js +0 -38
- package/Binaries/Nodejs/lib/core/handler/LoadLibraryHandler.js +0 -48
- package/Binaries/Nodejs/lib/core/handler/PassDelegateHandler.js +0 -157
- package/Binaries/Nodejs/lib/core/handler/ResolveReferenceHandler.js +0 -13
- package/Binaries/Nodejs/lib/core/handler/SetGlobalStaticFieldHandler.js +0 -38
- package/Binaries/Nodejs/lib/core/handler/SetInstanceFieldHandler.js +0 -35
- package/Binaries/Nodejs/lib/core/handler/SetStaticFieldHandler.js +0 -33
- package/Binaries/Nodejs/lib/core/handler/ValueHandler.js +0 -13
- package/Binaries/Nodejs/lib/core/interpreter/Interpreter.js +0 -142
- package/Binaries/Nodejs/lib/core/namespaceCache/NamespaceCache.js +0 -39
- package/Binaries/Nodejs/lib/core/protocol/CommandDeserializer.js +0 -181
- package/Binaries/Nodejs/lib/core/protocol/CommandSerializer.js +0 -50
- package/Binaries/Nodejs/lib/core/protocol/TypeDeserializer.js +0 -83
- package/Binaries/Nodejs/lib/core/protocol/TypeSerializer.js +0 -143
- package/Binaries/Nodejs/lib/core/receiver/Receiver.js +0 -32
- package/Binaries/Nodejs/lib/core/receiver/ReceiverNative.js +0 -13
- package/Binaries/Nodejs/lib/core/referenceCache/ReferencesCache.js +0 -30
- package/Binaries/Nodejs/lib/core/transmitter/Transmitter.js +0 -21
- package/Binaries/Nodejs/lib/core/transmitter/TransmitterWebsocket.js +0 -33
- package/Binaries/Nodejs/lib/core/transmitter/TransmitterWrapper.js +0 -47
- package/Binaries/Nodejs/lib/core/typeCache/TypeCache.js +0 -39
- package/Binaries/Nodejs/lib/core/webSocketClient/WebSocketClient.js +0 -136
- package/Binaries/Nodejs/lib/declarations.d.ts +0 -64
- package/Binaries/Nodejs/lib/sdk/ConfigRuntimeFactory.js +0 -145
- package/Binaries/Nodejs/lib/sdk/InvocationContext.js +0 -485
- package/Binaries/Nodejs/lib/sdk/Javonet.js +0 -105
- package/Binaries/Nodejs/lib/sdk/RuntimeContext.js +0 -300
- package/Binaries/Nodejs/lib/sdk/RuntimeFactory.js +0 -78
- package/Binaries/Nodejs/lib/sdk/tools/JsonFileResolver.js +0 -101
- package/Binaries/Nodejs/lib/sdk/tools/SdkExceptionHelper.js +0 -79
- package/Binaries/Nodejs/lib/utils/Command.js +0 -69
- package/Binaries/Nodejs/lib/utils/CommandType.js +0 -47
- package/Binaries/Nodejs/lib/utils/ConnectionType.js +0 -8
- package/Binaries/Nodejs/lib/utils/CustomError.js +0 -8
- package/Binaries/Nodejs/lib/utils/ExceptionType.js +0 -13
- package/Binaries/Nodejs/lib/utils/RuntimeLogger.js +0 -30
- package/Binaries/Nodejs/lib/utils/RuntimeName.js +0 -14
- package/Binaries/Nodejs/lib/utils/RuntimeNameHandler.js +0 -34
- package/Binaries/Nodejs/lib/utils/StringEncodingMode.js +0 -9
- package/Binaries/Nodejs/lib/utils/Type.js +0 -17
- package/Binaries/Nodejs/lib/utils/TypesConverter.js +0 -91
- package/Binaries/Nodejs/lib/utils/connectionData/IConnectionData.js +0 -15
- package/Binaries/Nodejs/lib/utils/connectionData/InMemoryConnectionData.js +0 -35
- package/Binaries/Nodejs/lib/utils/connectionData/TcpConnectionData.js +0 -77
- package/Binaries/Nodejs/lib/utils/connectionData/WsConnectionData.js +0 -50
- package/Binaries/Nodejs/lib/utils/exception/ExceptionSerializer.js +0 -64
- package/Binaries/Nodejs/lib/utils/exception/ExceptionThrower.js +0 -95
- package/Binaries/Nodejs/lib/utils/guid/generateGuid.js +0 -9
- package/Binaries/Nodejs/lib/utils/uuid/REGEX.js +0 -2
- package/Binaries/Nodejs/lib/utils/uuid/rng.js +0 -12
- package/Binaries/Nodejs/lib/utils/uuid/stringify.js +0 -51
- package/Binaries/Nodejs/lib/utils/uuid/v4.js +0 -27
- package/Binaries/Nodejs/lib/utils/uuid/validate.js +0 -6
- package/Binaries/Perl/Linux/X64/deps/bin/config_data +0 -249
- package/Binaries/Perl/Linux/X64/deps/bin/moose-outdated +0 -22
- package/Binaries/Perl/Linux/X64/deps/bin/package-stash-conflicts +0 -22
- package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-events +0 -62
- package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-highlight +0 -54
- package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-load +0 -155
- package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-load-dump +0 -314
- package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-parse-emit +0 -123
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Abstract.pm +0 -74
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Alias.pm +0 -75
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Memoize.pm +0 -77
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Method.pm +0 -151
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/SigHandler.pm +0 -61
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Util.pm +0 -101
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Capture/Tiny.pm +0 -917
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Class/Load/PP.pm +0 -59
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Class/Load.pm +0 -420
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/Cmp/Numeric.pm +0 -188
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/Cmp/StrOrNumeric.pm +0 -200
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/Cmp.pm +0 -278
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/OptList.pm +0 -416
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/GlobalDestruction.pm +0 -110
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/OverloadInfo.pm +0 -309
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/StackTrace/Frame.pm +0 -272
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/StackTrace.pm +0 -624
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Eval/Closure.pm +0 -379
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Config/MakeMaker.pm +0 -141
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Config.pm +0 -152
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers/Unix.pm +0 -97
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers/VMS.pm +0 -118
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers/Windows.pm +0 -125
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers.pm +0 -122
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/InstallPaths.pm +0 -627
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/FFI/CheckLib.pm +0 -856
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/File/Which.pm +0 -398
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/IPC/System/Simple.pm +0 -1115
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/MRO/Compat.pm +0 -407
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Module/Build.pm +0 -1097
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Module/Implementation.pm +0 -290
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Module/Runtime/Conflicts.pm +0 -105
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Module/Runtime.pm +0 -515
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Nice/Try.pm +0 -3257
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Cache.pm +0 -301
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document/File.pm +0 -136
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document/Fragment.pm +0 -90
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document/Normalized.pm +0 -315
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document.pm +0 -1012
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Dumper.pm +0 -309
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Element.pm +0 -907
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Exception/ParserRejection.pm +0 -10
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Exception.pm +0 -108
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Find.pm +0 -391
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Lexer.pm +0 -1584
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Node.pm +0 -831
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Normal/Standard.pm +0 -139
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Normal.pm +0 -257
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Singletons.pm +0 -92
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Break.pm +0 -75
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Compound.pm +0 -205
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Data.pm +0 -81
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/End.pm +0 -79
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Expression.pm +0 -67
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Given.pm +0 -90
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Include/Perl6.pm +0 -87
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Include.pm +0 -365
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Null.pm +0 -75
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Package.pm +0 -145
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Scheduled.pm +0 -124
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Sub.pm +0 -222
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Unknown.pm +0 -68
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/UnmatchedBrace.pm +0 -80
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Variable.pm +0 -195
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/When.pm +0 -100
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement.pm +0 -344
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Block.pm +0 -82
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Condition.pm +0 -67
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Constructor.pm +0 -62
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/For.pm +0 -77
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Given.pm +0 -63
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/List.pm +0 -87
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Signature.pm +0 -61
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Subscript.pm +0 -68
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Unknown.pm +0 -69
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/When.pm +0 -63
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure.pm +0 -348
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/ArrayIndex.pm +0 -77
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Attribute.pm +0 -176
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/BOM.pm +0 -113
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Cast.pm +0 -87
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Comment.pm +0 -146
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/DashedWord.pm +0 -96
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Data.pm +0 -116
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/End.pm +0 -111
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/HereDoc.pm +0 -338
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Label.pm +0 -58
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Magic.pm +0 -200
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Binary.pm +0 -117
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Exp.pm +0 -146
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Float.pm +0 -140
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Hex.pm +0 -108
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Octal.pm +0 -115
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Version.pm +0 -164
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number.pm +0 -166
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Operator.pm +0 -124
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Pod.pm +0 -159
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Prototype.pm +0 -100
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Double.pm +0 -138
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Interpolate.pm +0 -76
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Literal.pm +0 -81
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Single.pm +0 -93
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote.pm +0 -120
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Backtick.pm +0 -62
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Command.pm +0 -62
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Readline.pm +0 -71
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Regexp.pm +0 -126
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Words.pm +0 -88
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike.pm +0 -77
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp/Match.pm +0 -76
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp/Substitute.pm +0 -66
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp/Transliterate.pm +0 -70
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp.pm +0 -136
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Separator.pm +0 -64
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Structure.pm +0 -209
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Symbol.pm +0 -241
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Unknown.pm +0 -506
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Whitespace.pm +0 -454
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Word.pm +0 -375
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Full.pm +0 -450
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Simple.pm +0 -67
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/_QuoteEngine.pm +0 -240
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token.pm +0 -245
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Tokenizer.pm +0 -1123
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Transform/UpdateCopyright.pm +0 -179
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Transform.pm +0 -240
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Util.pm +0 -72
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/XSAccessor.pm +0 -165
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI.pm +0 -822
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/DeprecationManager.pm +0 -368
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/Stash/Conflicts.pm +0 -35
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/Stash/PP.pm +0 -503
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/Stash.pm +0 -308
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Path/Tiny.pm +0 -3946
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Safe/Isa.pm +0 -213
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Scope/Guard.pm +0 -183
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Cookbook.pod +0 -602
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Progressive.pm +0 -174
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Tutorial.pod +0 -539
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Util.pm +0 -488
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter.pm +0 -1769
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Install.pm +0 -486
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Task/Weaken.pm +0 -95
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Test/Fatal.pm +0 -477
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/Try/Tiny.pm +0 -820
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Common.pm +0 -273
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Constructor.pm +0 -435
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Dumper.pm +0 -283
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Emitter.pm +0 -1165
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Exception.pm +0 -79
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Grammar.pm +0 -2150
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Highlight.pm +0 -235
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Lexer.pm +0 -962
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Loader.pm +0 -103
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Parser.pm +0 -1469
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Perl.pm +0 -83
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Reader.pm +0 -78
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Render.pm +0 -155
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Representer.pm +0 -230
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Binary.pm +0 -102
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Catchall.pm +0 -76
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Core.pm +0 -155
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Failsafe.pm +0 -71
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Include.pm +0 -259
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/JSON.pm +0 -259
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Merge.pm +0 -109
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Perl.pm +0 -1004
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Tie/IxHash.pm +0 -156
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/YAML1_1.pm +0 -249
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema.pm +0 -447
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Type/MergeKey.pm +0 -40
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Writer/File.pm +0 -104
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Writer.pm +0 -89
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP.pm +0 -1547
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/aliased.pm +0 -371
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Attribute-Util-1.07/MYMETA.json +0 -43
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Attribute-Util-1.07/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Capture-Tiny-0.50/MYMETA.json +0 -124
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Capture-Tiny-0.50/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-0.25/MYMETA.json +0 -1290
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-0.25/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-XS-0.10/MYMETA.json +0 -1222
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-XS-0.10/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Clone-0.47/MYMETA.json +0 -54
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Clone-0.47/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-Cmp-0.010/MYMETA.json +0 -591
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-Cmp-0.010/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-OptList-0.114/MYMETA.json +0 -570
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-OptList-0.114/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-UUID-1.227/MYMETA.json +0 -50
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-UUID-1.227/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-GlobalDestruction-0.14/MYMETA.json +0 -65
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-GlobalDestruction-0.14/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-OverloadInfo-0.007/MYMETA.json +0 -73
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-OverloadInfo-0.007/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-StackTrace-2.05/MYMETA.json +0 -1081
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-StackTrace-2.05/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Dist-CheckConflicts-0.11/MYMETA.json +0 -463
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Dist-CheckConflicts-0.11/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Eval-Closure-0.14/MYMETA.json +0 -599
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Eval-Closure-0.14/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Config-0.010/MYMETA.json +0 -79
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Config-0.010/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Helpers-0.028/MYMETA.json +0 -89
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Helpers-0.028/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-InstallPaths-0.014/MYMETA.json +0 -76
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-InstallPaths-0.014/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-CheckLib-0.31/MYMETA.json +0 -156
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-CheckLib-0.31/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-Platypus-2.10/MYMETA.json +0 -198
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-Platypus-2.10/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/File-Which-1.27/MYMETA.json +0 -81
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/File-Which-1.27/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/IPC-System-Simple-1.30/MYMETA.json +0 -69
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/IPC-System-Simple-1.30/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/MRO-Compat-0.15/MYMETA.json +0 -66
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/MRO-Compat-0.15/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Build-0.4234/MYMETA.json +0 -161
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Build-0.4234/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Build-Tiny-0.051/MYMETA.json +0 -122
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Build-Tiny-0.051/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Implementation-0.09/MYMETA.json +0 -625
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Implementation-0.09/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-0.016/MYMETA.json +0 -62
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-0.016/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-Conflicts-0.003/MYMETA.json +0 -1162
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-Conflicts-0.003/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Moose-2.2207/MYMETA.json +0 -3189
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Moose-2.2207/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Nice-Try-v1.3.15/MYMETA.json +0 -68
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Nice-Try-v1.3.15/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-1.281/MYMETA.json +0 -1115
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-1.281/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-XS-0.910/MYMETA.json +0 -1045
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-XS-0.910/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-DeprecationManager-0.18/MYMETA.json +0 -1069
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-DeprecationManager-0.18/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-0.40/MYMETA.json +0 -1371
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-0.40/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-XS-0.30/MYMETA.json +0 -1331
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-XS-0.30/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Params-Util-1.102/MYMETA.json +0 -89
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Params-Util-1.102/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Path-Tiny-0.148/MYMETA.json +0 -186
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Path-Tiny-0.148/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Safe-Isa-1.000010/MYMETA.json +0 -64
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Safe-Isa-1.000010/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scalar-List-Utils-1.68/MYMETA.json +0 -58
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scalar-List-Utils-1.68/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scalar-Util-Numeric-0.40/MYMETA.json +0 -50
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scalar-Util-Numeric-0.40/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scope-Guard-0.21/MYMETA.json +0 -53
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scope-Guard-0.21/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-0.991/MYMETA.json +0 -595
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-0.991/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-Progressive-0.001013/MYMETA.json +0 -55
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-Progressive-0.001013/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Install-0.929/MYMETA.json +0 -572
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Install-0.929/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Task-Weaken-1.06/MYMETA.json +0 -1092
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Task-Weaken-1.06/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Test-Fatal-0.017/MYMETA.json +0 -598
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Test-Fatal-0.017/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Try-Tiny-0.32/MYMETA.json +0 -1344
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Try-Tiny-0.32/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Want-0.29/MYMETA.json +0 -40
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Want-0.29/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/YAML-PP-v0.39.0/MYMETA.json +0 -222
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/YAML-PP-v0.39.0/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/aliased-0.34/MYMETA.json +0 -1035
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/aliased-0.34/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/autobox-v3.0.2/MYMETA.json +0 -53
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/autobox-v3.0.2/install.json +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/Load/XS.pm +0 -89
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Attribute.pm +0 -1100
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Class/Immutable/Trait.pm +0 -172
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Class.pm +0 -2312
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Deprecated.pm +0 -95
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Instance.pm +0 -533
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Accessor.pm +0 -404
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Constructor.pm +0 -251
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Generated.pm +0 -142
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Inlined.pm +0 -191
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Meta.pm +0 -169
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Wrapped.pm +0 -333
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method.pm +0 -356
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/MiniTrait.pm +0 -113
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/AttributeCore.pm +0 -125
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/HasAttributes.pm +0 -171
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/HasMethods.pm +0 -304
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/HasOverloads.pm +0 -243
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin.pm +0 -107
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Module.pm +0 -209
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Object.pm +0 -196
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Overload.pm +0 -340
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Package.pm +0 -460
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP.pm +0 -1222
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Clone.pm +0 -99
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Data/UUID.pm +0 -158
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Build.pm +0 -634
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/API.pm +0 -293
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Buffer.pm +0 -366
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Bundle.pm +0 -795
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Closure.pm +0 -199
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Constant.pm +0 -246
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/DL.pm +0 -231
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Function.pm +0 -229
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Internal.pm +0 -96
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang/ASM.pm +0 -126
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang/C.pm +0 -123
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang/Win32.pm +0 -457
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang.pm +0 -141
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Legacy.pm +0 -140
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Memory.pm +0 -268
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Record/Meta.pm +0 -148
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Record/TieArray.pm +0 -174
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Record.pm +0 -575
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/ShareConfig.pm +0 -122
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/PointerSizeBuffer.pm +0 -162
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/StringArray.pm +0 -272
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/StringPointer.pm +0 -190
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/WideString.pm +0 -529
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type.pm +0 -1399
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser/Version0.pm +0 -285
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser/Version1.pm +0 -390
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser/Version2.pm +0 -115
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser.pm +0 -183
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus.pm +0 -3302
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe/Runner/Builder.pm +0 -538
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe/Runner/Result.pm +0 -134
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe/Runner.pm +0 -204
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe.pm +0 -715
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Temp.pm +0 -147
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/typemap +0 -46
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/List/Util/XS.pm +0 -42
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/List/Util.pm +0 -836
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Conflicts.pm +0 -132
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/BankAccount_MethodModifiersAndSubclassing.pod +0 -384
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/BinaryTree_AttributeFeatures.pod +0 -397
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/BinaryTree_BuilderAndLazyBuild.pod +0 -176
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Company_Subtypes.pod +0 -615
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/DateTime_ExtendingNonMooseParent.pod +0 -127
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Document_AugmentAndInner.pod +0 -197
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Genome_OverloadingSubtypesAndCoercion.pod +0 -318
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/HTTP_SubtypesAndCoercion.pod +0 -345
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Immutable.pod +0 -99
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Person_BUILDARGSAndBUILD.pod +0 -180
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Point_AttributesAndSubclassing.pod +0 -489
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Extending/Debugging_BaseClassRole.pod +0 -153
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Extending/ExtensionOverview.pod +0 -404
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Extending/Mooseish_MooseSugar.pod +0 -160
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Legacy/Debugging_BaseClassReplacement.pod +0 -172
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Legacy/Labeled_AttributeMetaclass.pod +0 -337
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Legacy/Table_ClassMetaclass.pod +0 -132
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/GlobRef_InstanceMetaclass.pod +0 -304
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/Labeled_AttributeTrait.pod +0 -325
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/PrivateOrPublic_MethodMetaclass.pod +0 -224
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/Table_MetaclassTrait.pod +0 -157
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/WhyMeta.pod +0 -117
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Roles/ApplicationToInstance.pod +0 -191
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Roles/Comparable_CodeReuse.pod +0 -379
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Roles/Restartable_AdvancedComposition.pod +0 -230
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Snack/Keywords.pod +0 -240
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Snack/Types.pod +0 -130
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Style.pod +0 -77
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook.pod +0 -289
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Deprecated.pm +0 -98
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AccessorMustReadWrite.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AddParameterizableTypeTakesParameterizableType.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AddRoleTakesAMooseMetaRoleInstance.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AddRoleToARoleTakesAMooseMetaRole.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ApplyTakesABlessedInstance.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttachToClassNeedsAClassMOPClassInstanceOrASubclass.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeConflictInRoles.pm +0 -32
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeConflictInSummation.pm +0 -28
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeExtensionIsNotSupportedInRoles.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeIsRequired.pm +0 -45
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeMustBeAnClassMOPMixinAttributeCoreOrSubclass.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeNamesDoNotMatch.pm +0 -25
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeValueIsNotAnObject.pm +0 -28
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeValueIsNotDefined.pm +0 -22
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AutoDeRefNeedsArrayRefOrHashRef.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BadOptionFormat.pm +0 -25
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BothBuilderAndDefaultAreNotAllowed.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderDoesNotExist.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderMethodNotSupportedForAttribute.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderMethodNotSupportedForInlineAttribute.pm +0 -26
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderMustBeAMethodName.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CallingMethodOnAnImmutableInstance.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CallingReadOnlyMethodOnAnImmutableInstance.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanExtendOnlyClasses.pm +0 -15
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanOnlyConsumeRole.pm +0 -18
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanOnlyWrapBlessedCode.pm +0 -25
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanReblessOnlyIntoASubclass.pm +0 -15
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanReblessOnlyIntoASuperclass.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAddAdditionalTypeCoercionsToUnion.pm +0 -18
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAddAsAnAttributeToARole.pm +0 -20
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotApplyBaseClassRolesToRole.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAssignValueToReadOnlyAccessor.pm +0 -20
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAugmentIfLocalMethodPresent.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAugmentNoSuperMethod.pm +0 -26
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAutoDerefWithoutIsa.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAutoDereferenceTypeConstraint.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCalculateNativeType.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCallAnAbstractBaseMethod.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCallAnAbstractMethod.pm +0 -12
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCoerceAWeakRef.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCoerceAttributeWhichHasNoCoercion.pm +0 -17
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCreateHigherOrderTypeWithoutATypeParameter.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresent.pm +0 -25
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresentInClass.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotDelegateLocalMethodIsPresent.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotDelegateWithoutIsa.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFindDelegateMetaclass.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFindType.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFindTypeGivenToMatchOnType.pm +0 -33
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFixMetaclassCompatibility.pm +0 -26
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotGenerateInlineConstraint.pm +0 -30
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotInitializeMooseMetaRoleComposite.pm +0 -30
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotInlineTypeConstraintCheck.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotLocatePackageInINC.pm +0 -41
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotMakeMetaclassCompatible.pm +0 -23
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideALocalMethod.pm +0 -20
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideBodyOfMetaMethods.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideLocalMethodIsPresent.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideNoSuperMethod.pm +0 -26
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotRegisterUnnamedTypeConstraint.pm +0 -12
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotUseLazyBuildAndDefaultSimultaneously.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CircularReferenceInAlso.pm +0 -31
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ClassDoesNotHaveInitMeta.pm +0 -22
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ClassDoesTheExcludedRole.pm +0 -22
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ClassNamesDoNotMatch.pm +0 -25
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CloneObjectExpectsAnInstanceOfMetaclass.pm +0 -20
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CodeBlockMustBeACodeRef.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CoercingWithoutCoercions.pm +0 -12
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CoercionAlreadyExists.pm +0 -20
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CoercionNeedsTypeConstraint.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ConflictDetectedInCheckRoleExclusions.pm +0 -22
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ConflictDetectedInCheckRoleExclusionsInToClass.pm +0 -16
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ConstructClassInstanceTakesPackageName.pm +0 -12
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotCreateMethod.pm +0 -32
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotCreateWriter.pm +0 -24
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotEvalConstructor.pm +0 -34
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotEvalDestructor.pm +0 -34
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotFindTypeConstraintToCoerceFrom.pm +0 -20
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotGenerateInlineAttributeMethod.pm +0 -26
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotLocateTypeConstraintForUnion.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotParseType.pm +0 -30
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateMOPClassTakesArrayRefOfAttributes.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateMOPClassTakesArrayRefOfSuperclasses.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateMOPClassTakesHashRefOfMethods.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateTakesArrayRefOfRoles.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateTakesHashRefOfAttributes.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateTakesHashRefOfMethods.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DefaultToMatchOnTypeMustBeCodeRef.pm +0 -33
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DelegationToAClassWhichIsNotLoaded.pm +0 -20
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DelegationToARoleWhichIsNotLoaded.pm +0 -20
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DelegationToATypeWhichIsNotAClass.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DoesRequiresRoleName.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/EnumCalledWithAnArrayRefAndAdditionalArgs.pm +0 -24
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/EnumValuesMustBeString.pm +0 -26
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ExtendsMissingArgs.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/HandlesMustBeAHashRef.pm +0 -20
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IllegalInheritedOptions.pm +0 -23
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IllegalMethodTypeToAddMethodModifier.pm +0 -31
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IncompatibleMetaclassOfSuperclass.pm +0 -27
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InitMetaRequiresClass.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InitializeTakesUnBlessedPackageName.pm +0 -18
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InstanceBlessedIntoWrongClass.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InstanceMustBeABlessedReference.pm +0 -20
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidArgPassedToMooseUtilMetaRole.pm +0 -41
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidArgumentToMethod.pm +0 -45
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidArgumentsToTraitAliases.pm +0 -32
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidBaseTypeGivenToCreateParameterizedTypeConstraint.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidHandleValue.pm +0 -20
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidHasProvidedInARole.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidNameForType.pm +0 -17
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidOverloadOperator.pm +0 -21
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidRoleApplication.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidTypeConstraint.pm +0 -24
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidTypeGivenToCreateParameterizedTypeConstraint.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidValueForIs.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IsaDoesNotDoTheRole.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IsaLacksDoesMethod.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/LazyAttributeNeedsADefault.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Legacy.pm +0 -8
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MOPAttributeNewNeedsAttributeName.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MatchActionMustBeACodeRef.pm +0 -28
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MessageParameterMustBeCodeRef.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassIsAClassNotASubclassOfGivenMetaclass.pm +0 -24
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassIsARoleNotASubclassOfGivenMetaclass.pm +0 -26
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassIsNotASubclassOfGivenMetaclass.pm +0 -23
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaClass.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaRole.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassMustBeDerivedFromClassMOPClass.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassNotLoaded.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassTypeIncompatible.pm +0 -39
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodExpectedAMetaclassObject.pm +0 -24
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodExpectsFewerArgs.pm +0 -27
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodExpectsMoreArgs.pm +0 -25
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodModifierNeedsMethodName.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodNameConflictInRoles.pm +0 -47
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodNameNotFoundInInheritanceHierarchy.pm +0 -20
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodNameNotGiven.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustDefineAMethodName.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustDefineAnAttributeName.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustDefineAnOverloadOperator.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustHaveAtLeastOneValueToEnumerate.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassAHashOfOptions.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassAMooseMetaRoleInstanceOrSubclass.pm +0 -24
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassAPackageNameOrAnExistingClassMOPPackageInstance.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassEvenNumberOfArguments.pm +0 -25
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassEvenNumberOfAttributeOptions.pm +0 -24
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustProvideANameForTheAttribute.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSpecifyAtleastOneMethod.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSpecifyAtleastOneRole.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSpecifyAtleastOneRoleToApplicant.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAClassMOPAttributeInstance.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyADelegateToMethod.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAMetaclass.pm +0 -20
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAMooseMetaAttributeInstance.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAnAccessorTypeToConstructWith.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAnAttributeToConstructWith.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyArrayRefAsCurriedArguments.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyPackageNameAndName.pm +0 -20
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeedsTypeConstraintUnionForTypeCoercionUnion.pm +0 -25
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherAttributeNorAttributeNameIsGiven.pm +0 -12
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherClassNorClassNameIsGiven.pm +0 -12
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherRoleNorRoleNameIsGiven.pm +0 -12
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherTypeNorTypeNameIsGiven.pm +0 -12
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoAttributeFoundInSuperClass.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoBodyToInitializeInAnAbstractBaseClass.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoCasesMatched.pm +0 -27
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoConstraintCheckForTypeConstraint.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoDestructorClassSpecified.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoImmutableTraitSpecifiedForClass.pm +0 -17
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoParentGivenToSubtype.pm +0 -18
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OnlyInstancesCanBeCloned.pm +0 -20
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OperatorIsRequired.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadConflictInSummation.pm +0 -62
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMetaClass.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMetaMethod.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMetaOverload.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMethodNameOrCoderef.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAnOperator.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresNamesForCoderef.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverrideConflictInComposition.pm +0 -43
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverrideConflictInSummation.pm +0 -66
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/PackageDoesNotUseMooseExporter.pm +0 -28
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/PackageNameAndNameParamsNotGivenToWrap.pm +0 -25
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/PackagesAndModulesAreNotCachable.pm +0 -26
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ParameterIsNotSubtypeOfParent.pm +0 -26
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ReferencesAreNotAllowedAsDefault.pm +0 -27
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredAttributeLacksInitialization.pm +0 -19
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredAttributeNeedsADefault.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredMethodsImportedByClass.pm +0 -46
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredMethodsNotImplementedByClass.pm +0 -31
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Attribute.pm +0 -12
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/AttributeName.pm +0 -12
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Class.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/EitherAttributeOrAttributeName.pm +0 -49
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Instance.pm +0 -12
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/InstanceClass.pm +0 -12
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/InvalidAttributeOptions.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Method.pm +0 -12
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/ParamsHash.pm +0 -12
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Role.pm +0 -16
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/RoleForCreate.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/RoleForCreateMOPClass.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/TypeConstraint.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleDoesTheExcludedRole.pm +0 -28
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleExclusionConflict.pm +0 -27
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleNameRequired.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleNameRequiredForMooseMetaRole.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportAugment.pm +0 -12
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportExtends.pm +0 -12
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportInner.pm +0 -12
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportRegexReferencesForMethodModifiers.pm +0 -20
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesInCreateTakesAnArrayRef.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesListMustBeInstancesOfMooseMetaRole.pm +0 -26
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/SingleParamsToNewMustBeHashRef.pm +0 -12
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TriggerMustBeACodeRef.pm +0 -14
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TypeConstraintCannotBeUsedForAParameterizableType.pm +0 -25
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TypeConstraintIsAlreadyCreated.pm +0 -26
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TypeParameterMustBeMooseMetaType.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnableToCanonicalizeHandles.pm +0 -20
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnableToCanonicalizeNonRolePackage.pm +0 -20
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnableToRecognizeDelegateMetaclass.pm +0 -22
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UndefinedHashKeysPassedToMethod.pm +0 -25
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnionCalledWithAnArrayRefAndAdditionalArgs.pm +0 -24
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnionTakesAtleastTwoTypeNames.pm +0 -12
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ValidationFailedForInlineTypeConstraint.pm +0 -49
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ValidationFailedForTypeConstraint.pm +0 -33
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/WrapTakesACodeRefToBless.pm +0 -26
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/WrongTypeConstraintGiven.pm +0 -21
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception.pm +0 -211
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exporter.pm +0 -1048
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Intro.pod +0 -77
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Attributes.pod +0 -709
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/BestPractices.pod +0 -292
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Classes.pod +0 -218
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Concepts.pod +0 -439
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Construction.pod +0 -228
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Contributing.pod +0 -545
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Delegation.pod +0 -313
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Delta.pod +0 -1275
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Exceptions/Manifest.pod +0 -4124
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Exceptions.pod +0 -239
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/FAQ.pod +0 -470
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/MOP.pod +0 -214
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/MethodModifiers.pod +0 -449
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/MooseX.pod +0 -326
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Resources.pod +0 -526
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Roles.pod +0 -557
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Support.pod +0 -204
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Types.pod +0 -501
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Unsweetened.pod +0 -386
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual.pod +0 -334
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Array.pm +0 -387
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Bool.pm +0 -146
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Code.pm +0 -129
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Counter.pm +0 -157
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Hash.pm +0 -227
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Number.pm +0 -155
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/String.pm +0 -187
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait.pm +0 -244
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native.pm +0 -299
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute.pm +0 -1810
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Class/Immutable/Trait.pm +0 -123
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Class.pm +0 -1014
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Instance.pm +0 -109
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/Writer.pm +0 -27
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/accessor.pm +0 -56
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/clear.pm +0 -28
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/count.pm +0 -22
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/delete.pm +0 -50
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/elements.pm +0 -22
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/first.pm +0 -42
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/first_index.pm +0 -51
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/get.pm +0 -31
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/grep.pm +0 -41
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/insert.pm +0 -58
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/is_empty.pm +0 -22
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/join.pm +0 -41
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/map.pm +0 -41
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/natatime.pm +0 -66
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/pop.pm +0 -47
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/push.pm +0 -36
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/reduce.pm +0 -42
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/set.pm +0 -64
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/shallow_clone.pm +0 -26
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/shift.pm +0 -47
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/shuffle.pm +0 -24
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/sort.pm +0 -44
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/sort_in_place.pm +0 -45
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/splice.pm +0 -72
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/uniq.pm +0 -24
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/unshift.pm +0 -36
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array.pm +0 -28
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/not.pm +0 -20
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/set.pm +0 -24
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/toggle.pm +0 -29
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/unset.pm +0 -24
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Code/execute.pm +0 -20
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Code/execute_method.pm +0 -20
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Collection.pm +0 -167
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/Writer.pm +0 -24
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/dec.pm +0 -30
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/inc.pm +0 -30
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/reset.pm +0 -36
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/set.pm +0 -25
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/Writer.pm +0 -41
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/accessor.pm +0 -61
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/clear.pm +0 -37
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/count.pm +0 -22
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/defined.pm +0 -31
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/delete.pm +0 -46
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/elements.pm +0 -23
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/exists.pm +0 -31
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/get.pm +0 -35
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/is_empty.pm +0 -22
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/keys.pm +0 -22
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/kv.pm +0 -23
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/set.pm +0 -99
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/shallow_clone.pm +0 -26
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/values.pm +0 -22
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash.pm +0 -28
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/abs.pm +0 -29
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/add.pm +0 -31
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/div.pm +0 -31
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/mod.pm +0 -31
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/mul.pm +0 -31
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/set.pm +0 -25
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/sub.pm +0 -31
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Reader.pm +0 -47
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/append.pm +0 -31
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/chomp.pm +0 -40
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/chop.pm +0 -40
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/clear.pm +0 -24
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/inc.pm +0 -33
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/length.pm +0 -22
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/match.pm +0 -42
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/prepend.pm +0 -31
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/replace.pm +0 -69
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/substr.pm +0 -123
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Writer.pm +0 -174
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native.pm +0 -157
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor.pm +0 -208
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Augmented.pm +0 -171
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Constructor.pm +0 -145
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Delegation.pm +0 -307
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Destructor.pm +0 -251
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Meta.pm +0 -112
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Overridden.pm +0 -160
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method.pm +0 -100
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Mixin/AttributeCore.pm +0 -185
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Object/Trait.pm +0 -107
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/RoleSummation.pm +0 -440
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/ToClass.pm +0 -314
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/ToInstance.pm +0 -142
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/ToRole.pm +0 -283
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application.pm +0 -225
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Attribute.pm +0 -259
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Composite.pm +0 -320
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Method/Conflicting.pm +0 -135
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Method/Required.pm +0 -127
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Method.pm +0 -101
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role.pm +0 -1059
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeCoercion/Union.pm +0 -141
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeCoercion.pm +0 -239
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Class.pm +0 -261
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/DuckType.pm +0 -217
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Enum.pm +0 -235
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Parameterizable.pm +0 -200
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Parameterized.pm +0 -188
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Registry.pm +0 -206
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Role.pm +0 -235
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Union.pm +0 -346
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint.pm +0 -607
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Object.pm +0 -271
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Role.pm +0 -377
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Spec/Role.pod +0 -397
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Unsweetened.pod +0 -77
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util/MetaRole.pm +0 -329
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util/TypeConstraints/Builtins.pm +0 -305
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util/TypeConstraints.pm +0 -1443
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util.pm +0 -725
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose.pm +0 -1268
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/PPI/XS.pm +0 -137
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Package/Stash/XS.pm +0 -110
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Params/Util/PP.pm +0 -276
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Params/Util.pm +0 -486
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Scalar/List/Utils.pm +0 -43
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Scalar/Util/Numeric.pm +0 -137
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Scalar/Util.pm +0 -390
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Sub/Util.pm +0 -153
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Test/Moose.pm +0 -228
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Want.pm +0 -742
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Attribute/Util/.packlist +0 -12
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Capture/Tiny/.packlist +0 -2
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Class/Load/.packlist +0 -3
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Class/Load/XS/.packlist +0 -3
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Class/Load/XS/XS.so +0 -0
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Clone/.packlist +0 -4
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Clone/Clone.so +0 -0
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Clone/autosplit.ix +0 -3
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/Cmp/.packlist +0 -6
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/OptList/.packlist +0 -2
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/UUID/.packlist +0 -3
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/UUID/UUID.so +0 -0
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Devel/GlobalDestruction/.packlist +0 -2
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Devel/OverloadInfo/.packlist +0 -2
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Devel/StackTrace/.packlist +0 -4
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Eval/Closure/.packlist +0 -2
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/ExtUtils/Config/.packlist +0 -4
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/ExtUtils/Helpers/.packlist +0 -8
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/ExtUtils/InstallPaths/.packlist +0 -2
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/CheckLib/.packlist +0 -2
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/.packlist +0 -98
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Constant/Constant.txt +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Memory/Memory.txt +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Platypus.so +0 -0
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Record/Meta/Meta.txt +0 -1
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/File/Which/.packlist +0 -2
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/IPC/System/Simple/.packlist +0 -2
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/List/Util/.packlist +0 -11
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/List/Util/Util.so +0 -0
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/MRO/Compat/.packlist +0 -2
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Module/Implementation/.packlist +0 -2
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Module/Runtime/.packlist +0 -2
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Module/Runtime/Conflicts/.packlist +0 -2
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Moose/.packlist +0 -574
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Moose/Moose.so +0 -0
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Nice/Try/.packlist +0 -2
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PPI/.packlist +0 -186
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PPI/XS/.packlist +0 -3
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PPI/XS/XS.so +0 -0
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/DeprecationManager/.packlist +0 -2
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/Stash/.packlist +0 -6
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/Stash/XS/.packlist +0 -3
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/Stash/XS/XS.so +0 -0
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Params/Util/.packlist +0 -5
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Params/Util/Util.so +0 -0
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Path/Tiny/.packlist +0 -2
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Safe/Isa/.packlist +0 -2
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Scalar/Util/Numeric/.packlist +0 -3
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Scalar/Util/Numeric/Numeric.so +0 -0
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Scope/Guard/.packlist +0 -2
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Sub/Exporter/.packlist +0 -8
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Sub/Exporter/Progressive/.packlist +0 -2
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Sub/Install/.packlist +0 -2
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Task/Weaken/.packlist +0 -2
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Test/Fatal/.packlist +0 -2
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Try/Tiny/.packlist +0 -2
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Want/.packlist +0 -3
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Want/Want.so +0 -0
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/YAML/PP/.packlist +0 -55
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/aliased/.packlist +0 -2
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/autobox/.packlist +0 -5
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/autobox/autobox.so +0 -0
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/autobox/universal.pm +0 -13
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/autobox.pm +0 -404
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/autobox.pod +0 -709
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/metaclass.pm +0 -155
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/oose.pm +0 -137
- package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/perllocal.pod +0 -990
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/Exception.pm +0 -29
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/ExceptionSerializer.pm +0 -25
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/ExceptionThrower.pm +0 -40
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/SdkExceptionHelper.pm +0 -93
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/AbstractHandler.pm +0 -11
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/AbstractCommandHandler.pm +0 -48
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetItemHandler.pm +0 -38
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetRankHandler.pm +0 -29
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetSizeHandler.pm +0 -37
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArraySetItemHandler.pm +0 -40
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/CastingHandler.pm +0 -22
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/CreateClassInstanceHandler.pm +0 -37
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/DestructReferenceHandler.pm +0 -39
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/GetInstanceFieldHandler.pm +0 -39
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/GetStaticFieldHandler.pm +0 -40
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/GetTypeHandler.pm +0 -40
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeGlobalFunctionHandler.pm +0 -63
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeInstanceMethodHandler.pm +0 -51
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeStaticMethodHandler.pm +0 -51
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/LoadLibraryHandler.pm +0 -42
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ResolveInstanceHandler.pm +0 -38
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/SetInstanceFieldHandler.pm +0 -40
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/SetStaticFieldHandler.pm +0 -42
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ValueHandler.pm +0 -29
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/HandlerDictionary.pm +0 -22
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/PerlHandler.pm +0 -174
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/ReferencesCache.pm +0 -43
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Interpreter/Interpreter.pm +0 -43
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/CommandDeserializer.pm +0 -203
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/CommandSerializer.pm +0 -86
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/TypeDeserializer.pm +0 -82
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/TypeSerializer.pm +0 -142
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Receiver/Receiver.pm +0 -38
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Transmitter/PerlTransmitter.pm +0 -28
- package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Transmitter/PerlTransmitterWrapper.pm +0 -128
- package/Binaries/Perl/Linux/X64/lib/Javonet/Javonet.pm +0 -80
- package/Binaries/Perl/Linux/X64/lib/Javonet/JavonetPerlSdk.pm +0 -2
- package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/PerlCommand.pm +0 -101
- package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/PerlCommandType.pm +0 -56
- package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/RuntimeLib.pm +0 -25
- package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/RuntimeLogger.pm +0 -34
- package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/StringEncodingMode.pm +0 -20
- package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/Type.pm +0 -28
- package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractEnumInvocationContext.pm +0 -22
- package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInstanceContext.pm +0 -18
- package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInvocationContext.pm +0 -13
- package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractMethodInvocationContext.pm +0 -18
- package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeContext.pm +0 -17
- package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeFactory.pm +0 -24
- package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractTypeContext.pm +0 -15
- package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/ConnectionType.pm +0 -19
- package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/InvocationContext.pm +0 -450
- package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/RuntimeContext.pm +0 -292
- package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/RuntimeFactory.pm +0 -104
- package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-events +0 -62
- package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-events.bat +0 -79
- package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-highlight +0 -54
- package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-highlight.bat +0 -71
- package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load +0 -155
- package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load-dump +0 -314
- package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load-dump.bat +0 -331
- package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load.bat +0 -172
- package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-parse-emit +0 -123
- package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-parse-emit.bat +0 -140
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Abstract.pm +0 -74
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Alias.pm +0 -75
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Memoize.pm +0 -77
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Method.pm +0 -151
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/SigHandler.pm +0 -61
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Util.pm +0 -101
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/Data/Cmp/Numeric.pm +0 -188
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/Data/Cmp/StrOrNumeric.pm +0 -200
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/Data/Cmp.pm +0 -278
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Attribute-Util-1.07/MYMETA.json +0 -43
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Attribute-Util-1.07/install.json +0 -1
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-Cmp-0.010/MYMETA.json +0 -591
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-Cmp-0.010/install.json +0 -1
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-UUID-1.227/MYMETA.json +0 -50
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-UUID-1.227/install.json +0 -1
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Nice-Try-v1.3.15/MYMETA.json +0 -68
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Nice-Try-v1.3.15/install.json +0 -1
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-1.281/MYMETA.json +0 -1115
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-1.281/install.json +0 -1
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-XS-0.910/MYMETA.json +0 -1045
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-XS-0.910/install.json +0 -1
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Safe-Isa-1.000010/MYMETA.json +0 -64
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Safe-Isa-1.000010/install.json +0 -1
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Scalar-Util-Numeric-0.40/MYMETA.json +0 -50
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Scalar-Util-Numeric-0.40/install.json +0 -1
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Test-Fatal-0.017/MYMETA.json +0 -598
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Test-Fatal-0.017/install.json +0 -1
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Want-0.29/MYMETA.json +0 -40
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Want-0.29/install.json +0 -1
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/YAML-PP-v0.39.0/MYMETA.json +0 -222
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/YAML-PP-v0.39.0/install.json +0 -1
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/autobox-v3.0.2/MYMETA.json +0 -53
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/autobox-v3.0.2/install.json +0 -1
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/Data/UUID.pm +0 -158
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/PPI/XS.pm +0 -137
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/Scalar/Util/Numeric.pm +0 -137
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/Want.pm +0 -742
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Attribute/Util/.packlist +0 -6
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Data/Cmp/.packlist +0 -3
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Data/UUID/.packlist +0 -2
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Data/UUID/UUID.xs.dll +0 -0
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Nice/Try/.packlist +0 -1
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/PPI/.packlist +0 -95
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/PPI/XS/.packlist +0 -2
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/PPI/XS/XS.xs.dll +0 -0
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Safe/Isa/.packlist +0 -1
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Scalar/Util/Numeric/.packlist +0 -2
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Scalar/Util/Numeric/Numeric.xs.dll +0 -0
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Test/Fatal/.packlist +0 -1
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Want/.packlist +0 -2
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Want/Want.xs.dll +0 -0
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/YAML/PP/.packlist +0 -39
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/autobox/.packlist +0 -4
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/autobox/autobox.xs.dll +0 -0
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/autobox/universal.pm +0 -13
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/autobox.pm +0 -404
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/autobox.pod +0 -709
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/perllocal.pod +0 -264
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/Nice/Try.pm +0 -3257
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Cache.pm +0 -301
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document/File.pm +0 -136
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document/Fragment.pm +0 -90
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document/Normalized.pm +0 -315
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document.pm +0 -1012
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Dumper.pm +0 -309
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Element.pm +0 -907
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Exception/ParserRejection.pm +0 -10
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Exception.pm +0 -108
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Find.pm +0 -391
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Lexer.pm +0 -1584
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Node.pm +0 -831
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Normal/Standard.pm +0 -139
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Normal.pm +0 -257
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Singletons.pm +0 -92
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Break.pm +0 -75
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Compound.pm +0 -205
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Data.pm +0 -81
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/End.pm +0 -79
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Expression.pm +0 -67
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Given.pm +0 -90
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Include/Perl6.pm +0 -87
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Include.pm +0 -365
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Null.pm +0 -75
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Package.pm +0 -145
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Scheduled.pm +0 -124
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Sub.pm +0 -222
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Unknown.pm +0 -68
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/UnmatchedBrace.pm +0 -80
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Variable.pm +0 -195
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/When.pm +0 -100
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement.pm +0 -344
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Block.pm +0 -82
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Condition.pm +0 -67
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Constructor.pm +0 -62
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/For.pm +0 -77
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Given.pm +0 -63
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/List.pm +0 -87
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Signature.pm +0 -61
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Subscript.pm +0 -68
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Unknown.pm +0 -69
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/When.pm +0 -63
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure.pm +0 -348
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/ArrayIndex.pm +0 -77
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Attribute.pm +0 -176
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/BOM.pm +0 -113
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Cast.pm +0 -87
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Comment.pm +0 -146
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/DashedWord.pm +0 -96
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Data.pm +0 -116
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/End.pm +0 -111
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/HereDoc.pm +0 -338
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Label.pm +0 -58
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Magic.pm +0 -200
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Binary.pm +0 -117
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Exp.pm +0 -146
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Float.pm +0 -140
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Hex.pm +0 -108
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Octal.pm +0 -115
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Version.pm +0 -164
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number.pm +0 -166
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Operator.pm +0 -124
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Pod.pm +0 -159
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Prototype.pm +0 -100
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Double.pm +0 -138
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Interpolate.pm +0 -76
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Literal.pm +0 -81
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Single.pm +0 -93
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote.pm +0 -120
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Backtick.pm +0 -62
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Command.pm +0 -62
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Readline.pm +0 -71
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Regexp.pm +0 -126
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Words.pm +0 -88
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike.pm +0 -77
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp/Match.pm +0 -76
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp/Substitute.pm +0 -66
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp/Transliterate.pm +0 -70
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp.pm +0 -136
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Separator.pm +0 -64
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Structure.pm +0 -209
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Symbol.pm +0 -241
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Unknown.pm +0 -506
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Whitespace.pm +0 -454
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Word.pm +0 -375
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Full.pm +0 -450
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Simple.pm +0 -67
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/_QuoteEngine.pm +0 -240
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token.pm +0 -245
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Tokenizer.pm +0 -1123
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Transform/UpdateCopyright.pm +0 -179
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Transform.pm +0 -240
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Util.pm +0 -72
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/XSAccessor.pm +0 -165
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI.pm +0 -822
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/Safe/Isa.pm +0 -213
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/Test/Fatal.pm +0 -477
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Common.pm +0 -273
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Constructor.pm +0 -435
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Dumper.pm +0 -283
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Emitter.pm +0 -1165
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Exception.pm +0 -79
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Grammar.pm +0 -2150
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Highlight.pm +0 -235
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Lexer.pm +0 -962
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Loader.pm +0 -103
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Parser.pm +0 -1469
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Perl.pm +0 -83
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Reader.pm +0 -78
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Render.pm +0 -155
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Representer.pm +0 -230
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Binary.pm +0 -102
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Catchall.pm +0 -76
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Core.pm +0 -155
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Failsafe.pm +0 -71
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Include.pm +0 -259
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/JSON.pm +0 -259
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Merge.pm +0 -109
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Perl.pm +0 -1004
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Tie/IxHash.pm +0 -156
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/YAML1_1.pm +0 -249
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema.pm +0 -447
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Type/MergeKey.pm +0 -40
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Writer/File.pm +0 -104
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Writer.pm +0 -89
- package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP.pm +0 -1547
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/Exception.pm +0 -29
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/ExceptionSerializer.pm +0 -25
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/ExceptionThrower.pm +0 -40
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/SdkExceptionHelper.pm +0 -93
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/AbstractHandler.pm +0 -11
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/AbstractCommandHandler.pm +0 -48
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetItemHandler.pm +0 -38
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetRankHandler.pm +0 -29
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetSizeHandler.pm +0 -37
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArraySetItemHandler.pm +0 -40
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/CastingHandler.pm +0 -22
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/CreateClassInstanceHandler.pm +0 -37
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/DestructReferenceHandler.pm +0 -39
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/GetInstanceFieldHandler.pm +0 -39
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/GetStaticFieldHandler.pm +0 -40
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/GetTypeHandler.pm +0 -40
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeGlobalFunctionHandler.pm +0 -63
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeInstanceMethodHandler.pm +0 -51
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeStaticMethodHandler.pm +0 -51
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/LoadLibraryHandler.pm +0 -42
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ResolveInstanceHandler.pm +0 -38
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/SetInstanceFieldHandler.pm +0 -40
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/SetStaticFieldHandler.pm +0 -42
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ValueHandler.pm +0 -29
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/HandlerDictionary.pm +0 -22
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/PerlHandler.pm +0 -174
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/ReferencesCache.pm +0 -43
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Interpreter/Interpreter.pm +0 -43
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/CommandDeserializer.pm +0 -203
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/CommandSerializer.pm +0 -86
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/TypeDeserializer.pm +0 -82
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/TypeSerializer.pm +0 -142
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Receiver/Receiver.pm +0 -38
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Transmitter/PerlTransmitter.pm +0 -28
- package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Transmitter/PerlTransmitterWrapper.pm +0 -128
- package/Binaries/Perl/Windows/X64/lib/Javonet/Javonet.pm +0 -80
- package/Binaries/Perl/Windows/X64/lib/Javonet/JavonetPerlSdk.pm +0 -2
- package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/PerlCommand.pm +0 -101
- package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/PerlCommandType.pm +0 -56
- package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/RuntimeLib.pm +0 -25
- package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/RuntimeLogger.pm +0 -34
- package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/StringEncodingMode.pm +0 -20
- package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/Type.pm +0 -28
- package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractEnumInvocationContext.pm +0 -22
- package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInstanceContext.pm +0 -18
- package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInvocationContext.pm +0 -13
- package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractMethodInvocationContext.pm +0 -18
- package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeContext.pm +0 -17
- package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeFactory.pm +0 -24
- package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractTypeContext.pm +0 -15
- package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/ConnectionType.pm +0 -19
- package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/InvocationContext.pm +0 -450
- package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/RuntimeContext.pm +0 -292
- package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/RuntimeFactory.pm +0 -104
- package/Binaries/Python/javonet/core/__init__.py +0 -0
- package/Binaries/Python/javonet/core/callback/__init__.py +0 -0
- package/Binaries/Python/javonet/core/callback/callbackFunc.py +0 -7
- package/Binaries/Python/javonet/core/delegateCache/DelegatesCache.py +0 -39
- package/Binaries/Python/javonet/core/delegateCache/__init__.py +0 -0
- package/Binaries/Python/javonet/core/generator/__init__.py +0 -0
- package/Binaries/Python/javonet/core/generator/handler/AbstractGeneretatorHandler.py +0 -8
- package/Binaries/Python/javonet/core/generator/handler/CreateInstanceGeneratorHandler.py +0 -44
- package/Binaries/Python/javonet/core/generator/handler/GeneratorHandler.py +0 -65
- package/Binaries/Python/javonet/core/generator/handler/GetInstanceFieldGeneratorHandler.py +0 -36
- package/Binaries/Python/javonet/core/generator/handler/GetStaticFieldGeneratorHandler.py +0 -39
- package/Binaries/Python/javonet/core/generator/handler/GetTypeGeneratorHandler.py +0 -92
- package/Binaries/Python/javonet/core/generator/handler/Handlers.py +0 -59
- package/Binaries/Python/javonet/core/generator/handler/InvokeInstanceMethodGeneratorHandler.py +0 -53
- package/Binaries/Python/javonet/core/generator/handler/InvokeStaticMethodGeneratorHandler.py +0 -54
- package/Binaries/Python/javonet/core/generator/handler/__init__.py +0 -0
- package/Binaries/Python/javonet/core/generator/handler/shared/SharedArgumentNameHandler.py +0 -12
- package/Binaries/Python/javonet/core/generator/handler/shared/SharedClassInstanceHandler.py +0 -12
- package/Binaries/Python/javonet/core/generator/handler/shared/SharedClassNameHandler.py +0 -31
- package/Binaries/Python/javonet/core/generator/handler/shared/SharedMethodNameHandler.py +0 -30
- package/Binaries/Python/javonet/core/generator/handler/shared/SharedModifierHandler.py +0 -21
- package/Binaries/Python/javonet/core/generator/handler/shared/SharedReturnTypeHandler.py +0 -13
- package/Binaries/Python/javonet/core/generator/handler/shared/SharedTypeHandler.py +0 -57
- package/Binaries/Python/javonet/core/generator/handler/shared/__init__.py +0 -0
- package/Binaries/Python/javonet/core/generator/handler/shared/body/SharedBodyHandler.py +0 -10
- package/Binaries/Python/javonet/core/generator/handler/shared/body/SharedCreateInstanceBodyHandler.py +0 -21
- package/Binaries/Python/javonet/core/generator/handler/shared/body/SharedGetInstanceFieldBodyHandler.py +0 -16
- package/Binaries/Python/javonet/core/generator/handler/shared/body/SharedGetStaticFieldBodyHandler.py +0 -22
- package/Binaries/Python/javonet/core/generator/handler/shared/body/SharedGetTypeBodyHandler.py +0 -16
- package/Binaries/Python/javonet/core/generator/handler/shared/body/SharedInvokeInstanceMethodBodyHandler.py +0 -47
- package/Binaries/Python/javonet/core/generator/handler/shared/body/SharedInvokeStaticMethodBodyHandler.py +0 -55
- package/Binaries/Python/javonet/core/generator/handler/shared/body/__init__.py +0 -0
- package/Binaries/Python/javonet/core/generator/internal/CommonGenerator.py +0 -23
- package/Binaries/Python/javonet/core/generator/internal/PythonStringBuilder.py +0 -15
- package/Binaries/Python/javonet/core/generator/internal/SharedHandlerType.py +0 -12
- package/Binaries/Python/javonet/core/generator/internal/__init__.py +0 -0
- package/Binaries/Python/javonet/core/handler/AbstractCommandHandler.py +0 -20
- package/Binaries/Python/javonet/core/handler/AbstractHandler.py +0 -3
- package/Binaries/Python/javonet/core/handler/ArrayGetItemHandler.py +0 -27
- package/Binaries/Python/javonet/core/handler/ArrayGetRankHandler.py +0 -25
- package/Binaries/Python/javonet/core/handler/ArrayGetSizeHandler.py +0 -24
- package/Binaries/Python/javonet/core/handler/ArrayHandler.py +0 -13
- package/Binaries/Python/javonet/core/handler/ArraySetItemHandler.py +0 -39
- package/Binaries/Python/javonet/core/handler/CastingHandler.py +0 -6
- package/Binaries/Python/javonet/core/handler/CreateClassInstanceHandler.py +0 -22
- package/Binaries/Python/javonet/core/handler/DestructReferenceHandler.py +0 -13
- package/Binaries/Python/javonet/core/handler/EnableNamespaceHandler.py +0 -28
- package/Binaries/Python/javonet/core/handler/EnableTypeHandler.py +0 -28
- package/Binaries/Python/javonet/core/handler/GetEnumItemHandler.py +0 -29
- package/Binaries/Python/javonet/core/handler/GetEnumNameHandler.py +0 -22
- package/Binaries/Python/javonet/core/handler/GetEnumValueHandler.py +0 -22
- package/Binaries/Python/javonet/core/handler/GetInstanceFieldHandler.py +0 -27
- package/Binaries/Python/javonet/core/handler/GetInstanceMethodAsDelegateHandler.py +0 -29
- package/Binaries/Python/javonet/core/handler/GetStaticFieldHandler.py +0 -27
- package/Binaries/Python/javonet/core/handler/GetStaticMethodAsDelegateHandler.py +0 -31
- package/Binaries/Python/javonet/core/handler/GetTypeHandler.py +0 -85
- package/Binaries/Python/javonet/core/handler/Handler.py +0 -100
- package/Binaries/Python/javonet/core/handler/HandlerDictionary.py +0 -8
- package/Binaries/Python/javonet/core/handler/InvokeDelegateHandler.py +0 -27
- package/Binaries/Python/javonet/core/handler/InvokeGlobalFunctionHandler.py +0 -46
- package/Binaries/Python/javonet/core/handler/InvokeInstanceMethodHandler.py +0 -31
- package/Binaries/Python/javonet/core/handler/InvokeStaticMethodHandler.py +0 -33
- package/Binaries/Python/javonet/core/handler/LoadLibraryHandler.py +0 -31
- package/Binaries/Python/javonet/core/handler/PassDelegateHandler.py +0 -21
- package/Binaries/Python/javonet/core/handler/ResolveInstanceHandler.py +0 -19
- package/Binaries/Python/javonet/core/handler/SetInstanceFieldHandler.py +0 -29
- package/Binaries/Python/javonet/core/handler/SetStaticFieldHandler.py +0 -29
- package/Binaries/Python/javonet/core/handler/ValueHandler.py +0 -6
- package/Binaries/Python/javonet/core/handler/__init__.py +0 -0
- package/Binaries/Python/javonet/core/interpreter/Interpreter.py +0 -55
- package/Binaries/Python/javonet/core/interpreter/__init__.py +0 -0
- package/Binaries/Python/javonet/core/namespaceCache/NamespaceCache.py +0 -44
- package/Binaries/Python/javonet/core/namespaceCache/__init__.py +0 -0
- package/Binaries/Python/javonet/core/protocol/CommandDeserializer.py +0 -161
- package/Binaries/Python/javonet/core/protocol/CommandSerializer.py +0 -29
- package/Binaries/Python/javonet/core/protocol/TypeDeserializer.py +0 -64
- package/Binaries/Python/javonet/core/protocol/TypeSerializer.py +0 -96
- package/Binaries/Python/javonet/core/protocol/__init__.py +0 -0
- package/Binaries/Python/javonet/core/receiver/Receiver.py +0 -42
- package/Binaries/Python/javonet/core/receiver/__init__.py +0 -0
- package/Binaries/Python/javonet/core/referenceCache/ReferencesCache.py +0 -39
- package/Binaries/Python/javonet/core/referenceCache/__init__.py +0 -0
- package/Binaries/Python/javonet/core/transmitter/Transmitter.py +0 -20
- package/Binaries/Python/javonet/core/transmitter/TransmitterWrapper.py +0 -112
- package/Binaries/Python/javonet/core/transmitter/__init__.py +0 -0
- package/Binaries/Python/javonet/core/typeCache/TypeCache.py +0 -44
- package/Binaries/Python/javonet/core/typeCache/__init__.py +0 -0
- package/Binaries/Python/javonet/core/webSocketClient/WebSocketClient.py +0 -32
- package/Binaries/Python/javonet/utils/Command.py +0 -90
- package/Binaries/Python/javonet/utils/CommandType.py +0 -46
- package/Binaries/Python/javonet/utils/ConnectionType.py +0 -7
- package/Binaries/Python/javonet/utils/ExceptionType.py +0 -55
- package/Binaries/Python/javonet/utils/RuntimeLogger.py +0 -30
- package/Binaries/Python/javonet/utils/RuntimeName.py +0 -16
- package/Binaries/Python/javonet/utils/RuntimeNameHandler.py +0 -26
- package/Binaries/Python/javonet/utils/StringEncodingMode.py +0 -8
- package/Binaries/Python/javonet/utils/Type.py +0 -16
- package/Binaries/Python/javonet/utils/UtilsConst.py +0 -42
- package/Binaries/Python/javonet/utils/__init__.py +0 -0
- package/Binaries/Python/javonet/utils/connectionData/IConnectionData.py +0 -18
- package/Binaries/Python/javonet/utils/connectionData/InMemoryConnectionData.py +0 -23
- package/Binaries/Python/javonet/utils/connectionData/TcpConnectionData.py +0 -67
- package/Binaries/Python/javonet/utils/connectionData/WsConnectionData.py +0 -30
- package/Binaries/Python/javonet/utils/connectionData/__init__.py +0 -0
- package/Binaries/Python/javonet/utils/exception/ExceptionSerializer.py +0 -60
- package/Binaries/Python/javonet/utils/exception/ExceptionThrower.py +0 -81
- package/Binaries/Python/javonet/utils/exception/JavonetException.py +0 -10
- package/Binaries/Python/javonet/utils/exception/__init__.py +0 -0
- package/Binaries/Python/javonet/utils/messageHelper/MessageHelper.py +0 -86
- package/Binaries/Python/javonet/utils/messageHelper/__init__.py +0 -0
- package/Binaries/Ruby/Linux/X64/core/handler/abstract_command_handler.rb +0 -24
- package/Binaries/Ruby/Linux/X64/core/handler/abstract_handler.rb +0 -5
- package/Binaries/Ruby/Linux/X64/core/handler/array_get_item_handler.rb +0 -47
- package/Binaries/Ruby/Linux/X64/core/handler/array_get_rank_handler.rb +0 -23
- package/Binaries/Ruby/Linux/X64/core/handler/array_get_size_handler.rb +0 -37
- package/Binaries/Ruby/Linux/X64/core/handler/array_handler.rb +0 -12
- package/Binaries/Ruby/Linux/X64/core/handler/array_set_item_handler.rb +0 -47
- package/Binaries/Ruby/Linux/X64/core/handler/casting_handler.rb +0 -11
- package/Binaries/Ruby/Linux/X64/core/handler/create_class_instance_handler.rb +0 -34
- package/Binaries/Ruby/Linux/X64/core/handler/destruct_reference_handler.rb +0 -21
- package/Binaries/Ruby/Linux/X64/core/handler/enable_namespace_handler.rb +0 -31
- package/Binaries/Ruby/Linux/X64/core/handler/enable_type_handler.rb +0 -32
- package/Binaries/Ruby/Linux/X64/core/handler/get_instance_field_handler.rb +0 -34
- package/Binaries/Ruby/Linux/X64/core/handler/get_static_field_handler.rb +0 -34
- package/Binaries/Ruby/Linux/X64/core/handler/get_type_handler.rb +0 -70
- package/Binaries/Ruby/Linux/X64/core/handler/handler.rb +0 -111
- package/Binaries/Ruby/Linux/X64/core/handler/handler_dictionary.rb +0 -8
- package/Binaries/Ruby/Linux/X64/core/handler/invoke_global_function_handler.rb +0 -45
- package/Binaries/Ruby/Linux/X64/core/handler/invoke_instance_method_handler.rb +0 -36
- package/Binaries/Ruby/Linux/X64/core/handler/invoke_static_method_handler.rb +0 -38
- package/Binaries/Ruby/Linux/X64/core/handler/load_library_handler.rb +0 -33
- package/Binaries/Ruby/Linux/X64/core/handler/resolve_instance_handler.rb +0 -24
- package/Binaries/Ruby/Linux/X64/core/handler/set_instance_field_handler.rb +0 -35
- package/Binaries/Ruby/Linux/X64/core/handler/set_static_field_handler.rb +0 -31
- package/Binaries/Ruby/Linux/X64/core/handler/value_handler.rb +0 -7
- package/Binaries/Ruby/Linux/X64/core/interpreter/interpreter.rb +0 -25
- package/Binaries/Ruby/Linux/X64/core/namespace_cache/namespace_cache.rb +0 -40
- package/Binaries/Ruby/Linux/X64/core/protocol/command_deserializer.rb +0 -178
- package/Binaries/Ruby/Linux/X64/core/protocol/command_serializer.rb +0 -30
- package/Binaries/Ruby/Linux/X64/core/protocol/type_deserializer.rb +0 -65
- package/Binaries/Ruby/Linux/X64/core/protocol/type_serializer.rb +0 -98
- package/Binaries/Ruby/Linux/X64/core/receiver/receiver.rb +0 -22
- package/Binaries/Ruby/Linux/X64/core/reference_cache/references_cache.rb +0 -33
- package/Binaries/Ruby/Linux/X64/core/transmitter/transmitter.rb +0 -58
- package/Binaries/Ruby/Linux/X64/core/transmitter/transmitter_wrapper.rb +0 -32
- package/Binaries/Ruby/Linux/X64/core/type_cache/type_cache.rb +0 -40
- package/Binaries/Ruby/Linux/X64/external_lib/random/formatter.rb +0 -373
- package/Binaries/Ruby/Linux/X64/external_lib/securerandom.rb +0 -96
- package/Binaries/Ruby/Linux/X64/external_lib/singleton.rb +0 -172
- package/Binaries/Ruby/Linux/X64/utils/command.rb +0 -93
- package/Binaries/Ruby/Linux/X64/utils/command_type.rb +0 -135
- package/Binaries/Ruby/Linux/X64/utils/connection_type.rb +0 -4
- package/Binaries/Ruby/Linux/X64/utils/exceptions/exception_serializer.rb +0 -93
- package/Binaries/Ruby/Linux/X64/utils/exceptions/exception_thrower.rb +0 -65
- package/Binaries/Ruby/Linux/X64/utils/exceptions/exception_type.rb +0 -10
- package/Binaries/Ruby/Linux/X64/utils/runtime_logger.rb +0 -30
- package/Binaries/Ruby/Linux/X64/utils/runtime_name.rb +0 -11
- package/Binaries/Ruby/Linux/X64/utils/runtime_name_handler.rb +0 -34
- package/Binaries/Ruby/Linux/X64/utils/string_encoding_mode.rb +0 -6
- package/Binaries/Ruby/Linux/X64/utils/tcp_connection_data.rb +0 -37
- package/Binaries/Ruby/Linux/X64/utils/type.rb +0 -14
- package/Binaries/Ruby/MacOs/X64/core/handler/abstract_command_handler.rb +0 -24
- package/Binaries/Ruby/MacOs/X64/core/handler/abstract_handler.rb +0 -5
- package/Binaries/Ruby/MacOs/X64/core/handler/array_get_item_handler.rb +0 -47
- package/Binaries/Ruby/MacOs/X64/core/handler/array_get_rank_handler.rb +0 -23
- package/Binaries/Ruby/MacOs/X64/core/handler/array_get_size_handler.rb +0 -37
- package/Binaries/Ruby/MacOs/X64/core/handler/array_handler.rb +0 -12
- package/Binaries/Ruby/MacOs/X64/core/handler/array_set_item_handler.rb +0 -47
- package/Binaries/Ruby/MacOs/X64/core/handler/casting_handler.rb +0 -11
- package/Binaries/Ruby/MacOs/X64/core/handler/create_class_instance_handler.rb +0 -34
- package/Binaries/Ruby/MacOs/X64/core/handler/destruct_reference_handler.rb +0 -21
- package/Binaries/Ruby/MacOs/X64/core/handler/enable_namespace_handler.rb +0 -31
- package/Binaries/Ruby/MacOs/X64/core/handler/enable_type_handler.rb +0 -32
- package/Binaries/Ruby/MacOs/X64/core/handler/get_instance_field_handler.rb +0 -34
- package/Binaries/Ruby/MacOs/X64/core/handler/get_static_field_handler.rb +0 -34
- package/Binaries/Ruby/MacOs/X64/core/handler/get_type_handler.rb +0 -70
- package/Binaries/Ruby/MacOs/X64/core/handler/handler.rb +0 -111
- package/Binaries/Ruby/MacOs/X64/core/handler/handler_dictionary.rb +0 -8
- package/Binaries/Ruby/MacOs/X64/core/handler/invoke_global_function_handler.rb +0 -45
- package/Binaries/Ruby/MacOs/X64/core/handler/invoke_instance_method_handler.rb +0 -36
- package/Binaries/Ruby/MacOs/X64/core/handler/invoke_static_method_handler.rb +0 -38
- package/Binaries/Ruby/MacOs/X64/core/handler/load_library_handler.rb +0 -33
- package/Binaries/Ruby/MacOs/X64/core/handler/resolve_instance_handler.rb +0 -24
- package/Binaries/Ruby/MacOs/X64/core/handler/set_instance_field_handler.rb +0 -35
- package/Binaries/Ruby/MacOs/X64/core/handler/set_static_field_handler.rb +0 -31
- package/Binaries/Ruby/MacOs/X64/core/handler/value_handler.rb +0 -7
- package/Binaries/Ruby/MacOs/X64/core/interpreter/interpreter.rb +0 -25
- package/Binaries/Ruby/MacOs/X64/core/namespace_cache/namespace_cache.rb +0 -40
- package/Binaries/Ruby/MacOs/X64/core/protocol/command_deserializer.rb +0 -178
- package/Binaries/Ruby/MacOs/X64/core/protocol/command_serializer.rb +0 -30
- package/Binaries/Ruby/MacOs/X64/core/protocol/type_deserializer.rb +0 -65
- package/Binaries/Ruby/MacOs/X64/core/protocol/type_serializer.rb +0 -98
- package/Binaries/Ruby/MacOs/X64/core/receiver/receiver.rb +0 -22
- package/Binaries/Ruby/MacOs/X64/core/reference_cache/references_cache.rb +0 -33
- package/Binaries/Ruby/MacOs/X64/core/transmitter/transmitter.rb +0 -58
- package/Binaries/Ruby/MacOs/X64/core/transmitter/transmitter_wrapper.rb +0 -32
- package/Binaries/Ruby/MacOs/X64/core/type_cache/type_cache.rb +0 -40
- package/Binaries/Ruby/MacOs/X64/external_lib/random/formatter.rb +0 -373
- package/Binaries/Ruby/MacOs/X64/external_lib/securerandom.rb +0 -96
- package/Binaries/Ruby/MacOs/X64/external_lib/singleton.rb +0 -172
- package/Binaries/Ruby/MacOs/X64/utils/command.rb +0 -93
- package/Binaries/Ruby/MacOs/X64/utils/command_type.rb +0 -135
- package/Binaries/Ruby/MacOs/X64/utils/connection_type.rb +0 -4
- package/Binaries/Ruby/MacOs/X64/utils/exceptions/exception_serializer.rb +0 -93
- package/Binaries/Ruby/MacOs/X64/utils/exceptions/exception_thrower.rb +0 -65
- package/Binaries/Ruby/MacOs/X64/utils/exceptions/exception_type.rb +0 -10
- package/Binaries/Ruby/MacOs/X64/utils/runtime_logger.rb +0 -30
- package/Binaries/Ruby/MacOs/X64/utils/runtime_name.rb +0 -11
- package/Binaries/Ruby/MacOs/X64/utils/runtime_name_handler.rb +0 -34
- package/Binaries/Ruby/MacOs/X64/utils/string_encoding_mode.rb +0 -6
- package/Binaries/Ruby/MacOs/X64/utils/tcp_connection_data.rb +0 -37
- package/Binaries/Ruby/MacOs/X64/utils/type.rb +0 -14
- package/Binaries/Ruby/Windows/X64/core/handler/abstract_command_handler.rb +0 -24
- package/Binaries/Ruby/Windows/X64/core/handler/abstract_handler.rb +0 -5
- package/Binaries/Ruby/Windows/X64/core/handler/array_get_item_handler.rb +0 -47
- package/Binaries/Ruby/Windows/X64/core/handler/array_get_rank_handler.rb +0 -23
- package/Binaries/Ruby/Windows/X64/core/handler/array_get_size_handler.rb +0 -37
- package/Binaries/Ruby/Windows/X64/core/handler/array_handler.rb +0 -12
- package/Binaries/Ruby/Windows/X64/core/handler/array_set_item_handler.rb +0 -47
- package/Binaries/Ruby/Windows/X64/core/handler/casting_handler.rb +0 -11
- package/Binaries/Ruby/Windows/X64/core/handler/create_class_instance_handler.rb +0 -34
- package/Binaries/Ruby/Windows/X64/core/handler/destruct_reference_handler.rb +0 -21
- package/Binaries/Ruby/Windows/X64/core/handler/enable_namespace_handler.rb +0 -31
- package/Binaries/Ruby/Windows/X64/core/handler/enable_type_handler.rb +0 -32
- package/Binaries/Ruby/Windows/X64/core/handler/get_instance_field_handler.rb +0 -34
- package/Binaries/Ruby/Windows/X64/core/handler/get_static_field_handler.rb +0 -34
- package/Binaries/Ruby/Windows/X64/core/handler/get_type_handler.rb +0 -70
- package/Binaries/Ruby/Windows/X64/core/handler/handler.rb +0 -111
- package/Binaries/Ruby/Windows/X64/core/handler/handler_dictionary.rb +0 -8
- package/Binaries/Ruby/Windows/X64/core/handler/invoke_global_function_handler.rb +0 -45
- package/Binaries/Ruby/Windows/X64/core/handler/invoke_instance_method_handler.rb +0 -36
- package/Binaries/Ruby/Windows/X64/core/handler/invoke_static_method_handler.rb +0 -38
- package/Binaries/Ruby/Windows/X64/core/handler/load_library_handler.rb +0 -33
- package/Binaries/Ruby/Windows/X64/core/handler/resolve_instance_handler.rb +0 -24
- package/Binaries/Ruby/Windows/X64/core/handler/set_instance_field_handler.rb +0 -35
- package/Binaries/Ruby/Windows/X64/core/handler/set_static_field_handler.rb +0 -31
- package/Binaries/Ruby/Windows/X64/core/handler/value_handler.rb +0 -7
- package/Binaries/Ruby/Windows/X64/core/interpreter/interpreter.rb +0 -25
- package/Binaries/Ruby/Windows/X64/core/namespace_cache/namespace_cache.rb +0 -40
- package/Binaries/Ruby/Windows/X64/core/protocol/command_deserializer.rb +0 -178
- package/Binaries/Ruby/Windows/X64/core/protocol/command_serializer.rb +0 -30
- package/Binaries/Ruby/Windows/X64/core/protocol/type_deserializer.rb +0 -65
- package/Binaries/Ruby/Windows/X64/core/protocol/type_serializer.rb +0 -98
- package/Binaries/Ruby/Windows/X64/core/receiver/receiver.rb +0 -22
- package/Binaries/Ruby/Windows/X64/core/reference_cache/references_cache.rb +0 -33
- package/Binaries/Ruby/Windows/X64/core/transmitter/transmitter.rb +0 -58
- package/Binaries/Ruby/Windows/X64/core/transmitter/transmitter_wrapper.rb +0 -32
- package/Binaries/Ruby/Windows/X64/core/type_cache/type_cache.rb +0 -40
- package/Binaries/Ruby/Windows/X64/external_lib/random/formatter.rb +0 -373
- package/Binaries/Ruby/Windows/X64/external_lib/securerandom.rb +0 -96
- package/Binaries/Ruby/Windows/X64/external_lib/singleton.rb +0 -172
- package/Binaries/Ruby/Windows/X64/utils/command.rb +0 -93
- package/Binaries/Ruby/Windows/X64/utils/command_type.rb +0 -135
- package/Binaries/Ruby/Windows/X64/utils/connection_type.rb +0 -4
- package/Binaries/Ruby/Windows/X64/utils/exceptions/exception_serializer.rb +0 -93
- package/Binaries/Ruby/Windows/X64/utils/exceptions/exception_thrower.rb +0 -65
- package/Binaries/Ruby/Windows/X64/utils/exceptions/exception_type.rb +0 -10
- package/Binaries/Ruby/Windows/X64/utils/runtime_logger.rb +0 -30
- package/Binaries/Ruby/Windows/X64/utils/runtime_name.rb +0 -11
- package/Binaries/Ruby/Windows/X64/utils/runtime_name_handler.rb +0 -34
- package/Binaries/Ruby/Windows/X64/utils/string_encoding_mode.rb +0 -6
- package/Binaries/Ruby/Windows/X64/utils/tcp_connection_data.rb +0 -37
- package/Binaries/Ruby/Windows/X64/utils/type.rb +0 -14
- package/Binaries/version.txt +0 -1
- package/addon/JavonetNodejsRuntimeAddon.cpp +0 -299
- package/addon/JavonetNodejsRuntimeAddon.h +0 -70
- package/binding.gyp +0 -8
- package/dist/Javonet.d.ts +0 -4821
- package/dist/index.js +0 -66
- package/dist/lib/core/delegatesCache/DelegatesCache.js +0 -35
- package/dist/lib/core/handler/AbstractHandler.js +0 -41
- package/dist/lib/core/handler/ArrayGetItemHandler.js +0 -38
- package/dist/lib/core/handler/ArrayGetRankHandler.js +0 -28
- package/dist/lib/core/handler/ArrayGetSizeHandler.js +0 -29
- package/dist/lib/core/handler/ArrayHandler.js +0 -18
- package/dist/lib/core/handler/ArraySetItemHandler.js +0 -43
- package/dist/lib/core/handler/CastingHandler.js +0 -10
- package/dist/lib/core/handler/ConvertTypeHandler.js +0 -38
- package/dist/lib/core/handler/CreateClassInstanceHandler.js +0 -36
- package/dist/lib/core/handler/DestructReferenceHandler.js +0 -19
- package/dist/lib/core/handler/EnableNamespaceHandler.js +0 -34
- package/dist/lib/core/handler/EnableTypeHandler.js +0 -35
- package/dist/lib/core/handler/GetGlobalStaticFieldHandler.js +0 -37
- package/dist/lib/core/handler/GetInstanceFieldHandler.js +0 -35
- package/dist/lib/core/handler/GetInstanceMethodAsDelegateHandler.js +0 -73
- package/dist/lib/core/handler/GetStaticFieldHandler.js +0 -36
- package/dist/lib/core/handler/GetStaticMethodAsDelegateHandler.js +0 -74
- package/dist/lib/core/handler/GetTypeHandler.js +0 -63
- package/dist/lib/core/handler/Handler.js +0 -98
- package/dist/lib/core/handler/InvokeDelegateHandler.js +0 -36
- package/dist/lib/core/handler/InvokeGlobalFunctionHandler.js +0 -39
- package/dist/lib/core/handler/InvokeInstanceMethodHandler.js +0 -38
- package/dist/lib/core/handler/InvokeStaticMethodHandler.js +0 -38
- package/dist/lib/core/handler/LoadLibraryHandler.js +0 -48
- package/dist/lib/core/handler/PassDelegateHandler.js +0 -157
- package/dist/lib/core/handler/ResolveReferenceHandler.js +0 -13
- package/dist/lib/core/handler/SetGlobalStaticFieldHandler.js +0 -38
- package/dist/lib/core/handler/SetInstanceFieldHandler.js +0 -35
- package/dist/lib/core/handler/SetStaticFieldHandler.js +0 -33
- package/dist/lib/core/handler/ValueHandler.js +0 -13
- package/dist/lib/core/interpreter/Interpreter.js +0 -142
- package/dist/lib/core/namespaceCache/NamespaceCache.js +0 -39
- package/dist/lib/core/protocol/CommandDeserializer.js +0 -181
- package/dist/lib/core/protocol/CommandSerializer.js +0 -50
- package/dist/lib/core/protocol/TypeDeserializer.js +0 -83
- package/dist/lib/core/protocol/TypeSerializer.js +0 -143
- package/dist/lib/core/receiver/Receiver.js +0 -32
- package/dist/lib/core/receiver/ReceiverNative.js +0 -13
- package/dist/lib/core/referenceCache/ReferencesCache.js +0 -30
- package/dist/lib/core/transmitter/Transmitter.js +0 -21
- package/dist/lib/core/transmitter/TransmitterWebsocket.js +0 -33
- package/dist/lib/core/transmitter/TransmitterWrapper.js +0 -47
- package/dist/lib/core/typeCache/TypeCache.js +0 -39
- package/dist/lib/core/webSocketClient/WebSocketClient.js +0 -136
- package/dist/lib/declarations.d.ts +0 -64
- package/dist/lib/sdk/ConfigRuntimeFactory.js +0 -145
- package/dist/lib/sdk/InvocationContext.js +0 -485
- package/dist/lib/sdk/Javonet.js +0 -105
- package/dist/lib/sdk/RuntimeContext.js +0 -300
- package/dist/lib/sdk/RuntimeFactory.js +0 -78
- package/dist/lib/sdk/tools/JsonFileResolver.js +0 -101
- package/dist/lib/sdk/tools/SdkExceptionHelper.js +0 -79
- package/dist/lib/utils/Command.js +0 -69
- package/dist/lib/utils/CommandType.js +0 -47
- package/dist/lib/utils/ConnectionType.js +0 -8
- package/dist/lib/utils/CustomError.js +0 -8
- package/dist/lib/utils/ExceptionType.js +0 -13
- package/dist/lib/utils/RuntimeLogger.js +0 -30
- package/dist/lib/utils/RuntimeName.js +0 -14
- package/dist/lib/utils/RuntimeNameHandler.js +0 -34
- package/dist/lib/utils/StringEncodingMode.js +0 -9
- package/dist/lib/utils/Type.js +0 -17
- package/dist/lib/utils/TypesConverter.js +0 -91
- package/dist/lib/utils/connectionData/IConnectionData.js +0 -15
- package/dist/lib/utils/connectionData/InMemoryConnectionData.js +0 -35
- package/dist/lib/utils/connectionData/TcpConnectionData.js +0 -77
- package/dist/lib/utils/connectionData/WsConnectionData.js +0 -50
- package/dist/lib/utils/exception/ExceptionSerializer.js +0 -64
- package/dist/lib/utils/exception/ExceptionThrower.js +0 -95
- package/dist/lib/utils/guid/generateGuid.js +0 -9
- package/dist/lib/utils/uuid/REGEX.js +0 -2
- package/dist/lib/utils/uuid/rng.js +0 -12
- package/dist/lib/utils/uuid/stringify.js +0 -51
- package/dist/lib/utils/uuid/v4.js +0 -27
- package/dist/lib/utils/uuid/validate.js +0 -6
- package/lib/sdk/tools/JsonFileResolver.js +0 -101
- package/lib/sdk/tools/SdkExceptionHelper.js +0 -79
- package/lib/utils/TypesConverter.js +0 -91
- package/lib/utils/connectionData/TcpConnectionData.js +0 -77
- package/lib/utils/uuid/REGEX.js +0 -2
- package/lib/utils/uuid/rng.js +0 -12
- package/lib/utils/uuid/stringify.js +0 -51
- package/lib/utils/uuid/v4.js +0 -27
- package/lib/utils/uuid/validate.js +0 -6
|
@@ -1,836 +0,0 @@
|
|
|
1
|
-
# Copyright (c) 1997-2009 Graham Barr <gbarr@pobox.com>. All rights reserved.
|
|
2
|
-
# This program is free software; you can redistribute it and/or
|
|
3
|
-
# modify it under the same terms as Perl itself.
|
|
4
|
-
#
|
|
5
|
-
# Maintained since 2013 by Paul Evans <leonerd@leonerd.org.uk>
|
|
6
|
-
|
|
7
|
-
package List::Util;
|
|
8
|
-
|
|
9
|
-
use strict;
|
|
10
|
-
use warnings;
|
|
11
|
-
require Exporter;
|
|
12
|
-
|
|
13
|
-
our @ISA = qw(Exporter);
|
|
14
|
-
our @EXPORT_OK = qw(
|
|
15
|
-
all any first min max minstr maxstr none notall product reduce reductions sum sum0
|
|
16
|
-
sample shuffle uniq uniqint uniqnum uniqstr zip zip_longest zip_shortest mesh mesh_longest mesh_shortest
|
|
17
|
-
head tail pairs unpairs pairkeys pairvalues pairmap pairgrep pairfirst
|
|
18
|
-
);
|
|
19
|
-
our $VERSION = "1.68";
|
|
20
|
-
our $XS_VERSION = $VERSION;
|
|
21
|
-
$VERSION =~ tr/_//d;
|
|
22
|
-
|
|
23
|
-
require XSLoader;
|
|
24
|
-
XSLoader::load('List::Util', $XS_VERSION);
|
|
25
|
-
|
|
26
|
-
# Used by shuffle()
|
|
27
|
-
our $RAND;
|
|
28
|
-
|
|
29
|
-
sub import
|
|
30
|
-
{
|
|
31
|
-
my $pkg = caller;
|
|
32
|
-
|
|
33
|
-
# (RT88848) Touch the caller's $a and $b, to avoid the warning of
|
|
34
|
-
# Name "main::a" used only once: possible typo" warning
|
|
35
|
-
no strict 'refs';
|
|
36
|
-
${"${pkg}::a"} = ${"${pkg}::a"};
|
|
37
|
-
${"${pkg}::b"} = ${"${pkg}::b"};
|
|
38
|
-
|
|
39
|
-
goto &Exporter::import;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
# For objects returned by pairs()
|
|
43
|
-
sub List::Util::_Pair::key { shift->[0] }
|
|
44
|
-
sub List::Util::_Pair::value { shift->[1] }
|
|
45
|
-
sub List::Util::_Pair::TO_JSON { [ @{+shift} ] }
|
|
46
|
-
|
|
47
|
-
=head1 NAME
|
|
48
|
-
|
|
49
|
-
List::Util - A selection of general-utility list subroutines
|
|
50
|
-
|
|
51
|
-
=head1 SYNOPSIS
|
|
52
|
-
|
|
53
|
-
use List::Util qw(
|
|
54
|
-
reduce any all none notall first reductions
|
|
55
|
-
|
|
56
|
-
max maxstr min minstr product sum sum0
|
|
57
|
-
|
|
58
|
-
pairs unpairs pairkeys pairvalues pairfirst pairgrep pairmap
|
|
59
|
-
|
|
60
|
-
shuffle uniq uniqint uniqnum uniqstr head tail zip mesh
|
|
61
|
-
);
|
|
62
|
-
|
|
63
|
-
=head1 DESCRIPTION
|
|
64
|
-
|
|
65
|
-
C<List::Util> contains a selection of subroutines that people have expressed
|
|
66
|
-
would be nice to have in the perl core, but the usage would not really be high
|
|
67
|
-
enough to warrant the use of a keyword, and the size so small such that being
|
|
68
|
-
individual extensions would be wasteful.
|
|
69
|
-
|
|
70
|
-
By default C<List::Util> does not export any subroutines.
|
|
71
|
-
|
|
72
|
-
=cut
|
|
73
|
-
|
|
74
|
-
=head1 LIST-REDUCTION FUNCTIONS
|
|
75
|
-
|
|
76
|
-
The following set of functions all apply a given block of code to a list of
|
|
77
|
-
values.
|
|
78
|
-
|
|
79
|
-
=cut
|
|
80
|
-
|
|
81
|
-
=head2 reduce
|
|
82
|
-
|
|
83
|
-
$result = reduce { BLOCK } @list
|
|
84
|
-
|
|
85
|
-
Reduces C<@list> by calling C<BLOCK> in a scalar context multiple times,
|
|
86
|
-
setting C<$a> and C<$b> each time. The first call will be with C<$a> and C<$b>
|
|
87
|
-
set to the first two elements of the list, subsequent calls will be done by
|
|
88
|
-
setting C<$a> to the result of the previous call and C<$b> to the next element
|
|
89
|
-
in the list.
|
|
90
|
-
|
|
91
|
-
Returns the result of the last call to the C<BLOCK>. If C<@list> is empty then
|
|
92
|
-
C<undef> is returned. If C<@list> only contains one element then that element
|
|
93
|
-
is returned and C<BLOCK> is not executed.
|
|
94
|
-
|
|
95
|
-
The following examples all demonstrate how C<reduce> could be used to implement
|
|
96
|
-
the other list-reduction functions in this module. (They are not in fact
|
|
97
|
-
implemented like this, but instead in a more efficient manner in individual C
|
|
98
|
-
functions).
|
|
99
|
-
|
|
100
|
-
$foo = reduce { defined($a) ? $a :
|
|
101
|
-
$code->(local $_ = $b) ? $b :
|
|
102
|
-
undef } undef, @list # first
|
|
103
|
-
|
|
104
|
-
$foo = reduce { $a > $b ? $a : $b } 1..10 # max
|
|
105
|
-
$foo = reduce { $a gt $b ? $a : $b } 'A'..'Z' # maxstr
|
|
106
|
-
$foo = reduce { $a < $b ? $a : $b } 1..10 # min
|
|
107
|
-
$foo = reduce { $a lt $b ? $a : $b } 'aa'..'zz' # minstr
|
|
108
|
-
$foo = reduce { $a + $b } 1 .. 10 # sum
|
|
109
|
-
$foo = reduce { $a . $b } @bar # concat
|
|
110
|
-
|
|
111
|
-
$foo = reduce { $a || $code->(local $_ = $b) } 0, @bar # any
|
|
112
|
-
$foo = reduce { $a && $code->(local $_ = $b) } 1, @bar # all
|
|
113
|
-
$foo = reduce { $a && !$code->(local $_ = $b) } 1, @bar # none
|
|
114
|
-
$foo = reduce { $a || !$code->(local $_ = $b) } 0, @bar # notall
|
|
115
|
-
# Note that these implementations do not fully short-circuit
|
|
116
|
-
|
|
117
|
-
If your algorithm requires that C<reduce> produce an identity value, then make
|
|
118
|
-
sure that you always pass that identity value as the first argument to prevent
|
|
119
|
-
C<undef> being returned
|
|
120
|
-
|
|
121
|
-
$foo = reduce { $a + $b } 0, @values; # sum with 0 identity value
|
|
122
|
-
|
|
123
|
-
The above example code blocks also suggest how to use C<reduce> to build a
|
|
124
|
-
more efficient combined version of one of these basic functions and a C<map>
|
|
125
|
-
block. For example, to find the total length of all the strings in a list,
|
|
126
|
-
we could use
|
|
127
|
-
|
|
128
|
-
$total = sum map { length } @strings;
|
|
129
|
-
|
|
130
|
-
However, this produces a list of temporary integer values as long as the
|
|
131
|
-
original list of strings, only to reduce it down to a single value again. We
|
|
132
|
-
can compute the same result more efficiently by using C<reduce> with a code
|
|
133
|
-
block that accumulates lengths by writing this instead as:
|
|
134
|
-
|
|
135
|
-
$total = reduce { $a + length $b } 0, @strings
|
|
136
|
-
|
|
137
|
-
The other scalar-returning list reduction functions are all specialisations of
|
|
138
|
-
this generic idea.
|
|
139
|
-
|
|
140
|
-
=head2 reductions
|
|
141
|
-
|
|
142
|
-
@results = reductions { BLOCK } @list
|
|
143
|
-
|
|
144
|
-
I<Since version 1.54.>
|
|
145
|
-
|
|
146
|
-
Similar to C<reduce> except that it also returns the intermediate values along
|
|
147
|
-
with the final result. As before, C<$a> is set to the first element of the
|
|
148
|
-
given list, and the C<BLOCK> is then called once for remaining item in the
|
|
149
|
-
list set into C<$b>, with the result being captured for return as well as
|
|
150
|
-
becoming the new value for C<$a>.
|
|
151
|
-
|
|
152
|
-
The returned list will begin with the initial value for C<$a>, followed by
|
|
153
|
-
each return value from the block in order. The final value of the result will
|
|
154
|
-
be identical to what the C<reduce> function would have returned given the same
|
|
155
|
-
block and list.
|
|
156
|
-
|
|
157
|
-
reduce { "$a-$b" } "a".."d" # "a-b-c-d"
|
|
158
|
-
reductions { "$a-$b" } "a".."d" # "a", "a-b", "a-b-c", "a-b-c-d"
|
|
159
|
-
|
|
160
|
-
=head2 any
|
|
161
|
-
|
|
162
|
-
my $bool = any { BLOCK } @list;
|
|
163
|
-
|
|
164
|
-
I<Since version 1.33.>
|
|
165
|
-
|
|
166
|
-
Similar to C<grep> in that it evaluates C<BLOCK> setting C<$_> to each element
|
|
167
|
-
of C<@list> in turn. C<any> returns true if any element makes the C<BLOCK>
|
|
168
|
-
return a true value. If C<BLOCK> never returns true or C<@list> was empty then
|
|
169
|
-
it returns false.
|
|
170
|
-
|
|
171
|
-
Many cases of using C<grep> in a conditional can be written using C<any>
|
|
172
|
-
instead, as it can short-circuit after the first true result.
|
|
173
|
-
|
|
174
|
-
if( any { length > 10 } @strings ) {
|
|
175
|
-
# at least one string has more than 10 characters
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
Note: Due to XS issues the block passed may be able to access the outer @_
|
|
179
|
-
directly. This is not intentional and will break under debugger.
|
|
180
|
-
|
|
181
|
-
=head2 all
|
|
182
|
-
|
|
183
|
-
my $bool = all { BLOCK } @list;
|
|
184
|
-
|
|
185
|
-
I<Since version 1.33.>
|
|
186
|
-
|
|
187
|
-
Similar to L</any>, except that it requires all elements of the C<@list> to
|
|
188
|
-
make the C<BLOCK> return true. If any element returns false, then it returns
|
|
189
|
-
false. If the C<BLOCK> never returns false or the C<@list> was empty then it
|
|
190
|
-
returns true.
|
|
191
|
-
|
|
192
|
-
Note: Due to XS issues the block passed may be able to access the outer @_
|
|
193
|
-
directly. This is not intentional and will break under debugger.
|
|
194
|
-
|
|
195
|
-
=head2 none
|
|
196
|
-
|
|
197
|
-
=head2 notall
|
|
198
|
-
|
|
199
|
-
my $bool = none { BLOCK } @list;
|
|
200
|
-
|
|
201
|
-
my $bool = notall { BLOCK } @list;
|
|
202
|
-
|
|
203
|
-
I<Since version 1.33.>
|
|
204
|
-
|
|
205
|
-
Similar to L</any> and L</all>, but with the return sense inverted. C<none>
|
|
206
|
-
returns true only if no value in the C<@list> causes the C<BLOCK> to return
|
|
207
|
-
true, and C<notall> returns true only if not all of the values do.
|
|
208
|
-
|
|
209
|
-
Note: Due to XS issues the block passed may be able to access the outer @_
|
|
210
|
-
directly. This is not intentional and will break under debugger.
|
|
211
|
-
|
|
212
|
-
=head2 first
|
|
213
|
-
|
|
214
|
-
my $val = first { BLOCK } @list;
|
|
215
|
-
|
|
216
|
-
Similar to C<grep> in that it evaluates C<BLOCK> setting C<$_> to each element
|
|
217
|
-
of C<@list> in turn. C<first> returns the first element where the result from
|
|
218
|
-
C<BLOCK> is a true value. If C<BLOCK> never returns true or C<@list> was empty
|
|
219
|
-
then C<undef> is returned.
|
|
220
|
-
|
|
221
|
-
$foo = first { defined($_) } @list # first defined value in @list
|
|
222
|
-
$foo = first { $_ > $value } @list # first value in @list which
|
|
223
|
-
# is greater than $value
|
|
224
|
-
|
|
225
|
-
=head2 max
|
|
226
|
-
|
|
227
|
-
my $num = max @list;
|
|
228
|
-
|
|
229
|
-
Returns the entry in the list with the highest numerical value. If the list is
|
|
230
|
-
empty then C<undef> is returned.
|
|
231
|
-
|
|
232
|
-
$foo = max 1..10 # 10
|
|
233
|
-
$foo = max 3,9,12 # 12
|
|
234
|
-
$foo = max @bar, @baz # whatever
|
|
235
|
-
|
|
236
|
-
=head2 maxstr
|
|
237
|
-
|
|
238
|
-
my $str = maxstr @list;
|
|
239
|
-
|
|
240
|
-
Similar to L</max>, but treats all the entries in the list as strings and
|
|
241
|
-
returns the highest string as defined by the C<gt> operator. If the list is
|
|
242
|
-
empty then C<undef> is returned.
|
|
243
|
-
|
|
244
|
-
$foo = maxstr 'A'..'Z' # 'Z'
|
|
245
|
-
$foo = maxstr "hello","world" # "world"
|
|
246
|
-
$foo = maxstr @bar, @baz # whatever
|
|
247
|
-
|
|
248
|
-
=head2 min
|
|
249
|
-
|
|
250
|
-
my $num = min @list;
|
|
251
|
-
|
|
252
|
-
Similar to L</max> but returns the entry in the list with the lowest numerical
|
|
253
|
-
value. If the list is empty then C<undef> is returned.
|
|
254
|
-
|
|
255
|
-
$foo = min 1..10 # 1
|
|
256
|
-
$foo = min 3,9,12 # 3
|
|
257
|
-
$foo = min @bar, @baz # whatever
|
|
258
|
-
|
|
259
|
-
=head2 minstr
|
|
260
|
-
|
|
261
|
-
my $str = minstr @list;
|
|
262
|
-
|
|
263
|
-
Similar to L</min>, but treats all the entries in the list as strings and
|
|
264
|
-
returns the lowest string as defined by the C<lt> operator. If the list is
|
|
265
|
-
empty then C<undef> is returned.
|
|
266
|
-
|
|
267
|
-
$foo = minstr 'A'..'Z' # 'A'
|
|
268
|
-
$foo = minstr "hello","world" # "hello"
|
|
269
|
-
$foo = minstr @bar, @baz # whatever
|
|
270
|
-
|
|
271
|
-
=head2 product
|
|
272
|
-
|
|
273
|
-
my $num = product @list;
|
|
274
|
-
|
|
275
|
-
I<Since version 1.35.>
|
|
276
|
-
|
|
277
|
-
Returns the numerical product of all the elements in C<@list>. If C<@list> is
|
|
278
|
-
empty then C<1> is returned.
|
|
279
|
-
|
|
280
|
-
$foo = product 1..10 # 3628800
|
|
281
|
-
$foo = product 3,9,12 # 324
|
|
282
|
-
|
|
283
|
-
=head2 sum
|
|
284
|
-
|
|
285
|
-
my $num_or_undef = sum @list;
|
|
286
|
-
|
|
287
|
-
Returns the numerical sum of all the elements in C<@list>. For backwards
|
|
288
|
-
compatibility, if C<@list> is empty then C<undef> is returned.
|
|
289
|
-
|
|
290
|
-
$foo = sum 1..10 # 55
|
|
291
|
-
$foo = sum 3,9,12 # 24
|
|
292
|
-
$foo = sum @bar, @baz # whatever
|
|
293
|
-
|
|
294
|
-
=head2 sum0
|
|
295
|
-
|
|
296
|
-
my $num = sum0 @list;
|
|
297
|
-
|
|
298
|
-
I<Since version 1.26.>
|
|
299
|
-
|
|
300
|
-
Similar to L</sum>, except this returns 0 when given an empty list, rather
|
|
301
|
-
than C<undef>.
|
|
302
|
-
|
|
303
|
-
=cut
|
|
304
|
-
|
|
305
|
-
=head1 KEY/VALUE PAIR LIST FUNCTIONS
|
|
306
|
-
|
|
307
|
-
The following set of functions, all inspired by L<List::Pairwise>, consume an
|
|
308
|
-
even-sized list of pairs. The pairs may be key/value associations from a hash,
|
|
309
|
-
or just a list of values. The functions will all preserve the original ordering
|
|
310
|
-
of the pairs, and will not be confused by multiple pairs having the same "key"
|
|
311
|
-
value - nor even do they require that the first of each pair be a plain string.
|
|
312
|
-
|
|
313
|
-
B<NOTE>: At the time of writing, the following C<pair*> functions that take a
|
|
314
|
-
block do not modify the value of C<$_> within the block, and instead operate
|
|
315
|
-
using the C<$a> and C<$b> globals instead. This has turned out to be a poor
|
|
316
|
-
design, as it precludes the ability to provide a C<pairsort> function. Better
|
|
317
|
-
would be to pass pair-like objects as 2-element array references in C<$_>, in
|
|
318
|
-
a style similar to the return value of the C<pairs> function. At some future
|
|
319
|
-
version this behaviour may be added.
|
|
320
|
-
|
|
321
|
-
Until then, users are alerted B<NOT> to rely on the value of C<$_> remaining
|
|
322
|
-
unmodified between the outside and the inside of the control block. In
|
|
323
|
-
particular, the following example is B<UNSAFE>:
|
|
324
|
-
|
|
325
|
-
my @kvlist = ...
|
|
326
|
-
|
|
327
|
-
foreach (qw( some keys here )) {
|
|
328
|
-
my @items = pairgrep { $a eq $_ } @kvlist;
|
|
329
|
-
...
|
|
330
|
-
}
|
|
331
|
-
|
|
332
|
-
Instead, write this using a lexical variable:
|
|
333
|
-
|
|
334
|
-
foreach my $key (qw( some keys here )) {
|
|
335
|
-
my @items = pairgrep { $a eq $key } @kvlist;
|
|
336
|
-
...
|
|
337
|
-
}
|
|
338
|
-
|
|
339
|
-
=cut
|
|
340
|
-
|
|
341
|
-
=head2 pairs
|
|
342
|
-
|
|
343
|
-
my @pairs = pairs @kvlist;
|
|
344
|
-
|
|
345
|
-
I<Since version 1.29.>
|
|
346
|
-
|
|
347
|
-
A convenient shortcut to operating on even-sized lists of pairs, this function
|
|
348
|
-
returns a list of C<ARRAY> references, each containing two items from the
|
|
349
|
-
given list. It is a more efficient version of
|
|
350
|
-
|
|
351
|
-
@pairs = pairmap { [ $a, $b ] } @kvlist
|
|
352
|
-
|
|
353
|
-
It is most convenient to use in a C<foreach> loop, for example:
|
|
354
|
-
|
|
355
|
-
foreach my $pair ( pairs @kvlist ) {
|
|
356
|
-
my ( $key, $value ) = @$pair;
|
|
357
|
-
...
|
|
358
|
-
}
|
|
359
|
-
|
|
360
|
-
Since version C<1.39> these C<ARRAY> references are blessed objects,
|
|
361
|
-
recognising the two methods C<key> and C<value>. The following code is
|
|
362
|
-
equivalent:
|
|
363
|
-
|
|
364
|
-
foreach my $pair ( pairs @kvlist ) {
|
|
365
|
-
my $key = $pair->key;
|
|
366
|
-
my $value = $pair->value;
|
|
367
|
-
...
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
Since version C<1.51> they also have a C<TO_JSON> method to ease
|
|
371
|
-
serialisation.
|
|
372
|
-
|
|
373
|
-
=head2 unpairs
|
|
374
|
-
|
|
375
|
-
my @kvlist = unpairs @pairs
|
|
376
|
-
|
|
377
|
-
I<Since version 1.42.>
|
|
378
|
-
|
|
379
|
-
The inverse function to C<pairs>; this function takes a list of C<ARRAY>
|
|
380
|
-
references containing two elements each, and returns a flattened list of the
|
|
381
|
-
two values from each of the pairs, in order. This is notionally equivalent to
|
|
382
|
-
|
|
383
|
-
my @kvlist = map { @{$_}[0,1] } @pairs
|
|
384
|
-
|
|
385
|
-
except that it is implemented more efficiently internally. Specifically, for
|
|
386
|
-
any input item it will extract exactly two values for the output list; using
|
|
387
|
-
C<undef> if the input array references are short.
|
|
388
|
-
|
|
389
|
-
Between C<pairs> and C<unpairs>, a higher-order list function can be used to
|
|
390
|
-
operate on the pairs as single scalars; such as the following near-equivalents
|
|
391
|
-
of the other C<pair*> higher-order functions:
|
|
392
|
-
|
|
393
|
-
@kvlist = unpairs grep { FUNC } pairs @kvlist
|
|
394
|
-
# Like pairgrep, but takes $_ instead of $a and $b
|
|
395
|
-
|
|
396
|
-
@kvlist = unpairs map { FUNC } pairs @kvlist
|
|
397
|
-
# Like pairmap, but takes $_ instead of $a and $b
|
|
398
|
-
|
|
399
|
-
Note however that these versions will not behave as nicely in scalar context.
|
|
400
|
-
|
|
401
|
-
Finally, this technique can be used to implement a sort on a keyvalue pair
|
|
402
|
-
list; e.g.:
|
|
403
|
-
|
|
404
|
-
@kvlist = unpairs sort { $a->key cmp $b->key } pairs @kvlist
|
|
405
|
-
|
|
406
|
-
=head2 pairkeys
|
|
407
|
-
|
|
408
|
-
my @keys = pairkeys @kvlist;
|
|
409
|
-
|
|
410
|
-
I<Since version 1.29.>
|
|
411
|
-
|
|
412
|
-
A convenient shortcut to operating on even-sized lists of pairs, this function
|
|
413
|
-
returns a list of the first values of each of the pairs in the given list.
|
|
414
|
-
It is a more efficient version of
|
|
415
|
-
|
|
416
|
-
@keys = pairmap { $a } @kvlist
|
|
417
|
-
|
|
418
|
-
=head2 pairvalues
|
|
419
|
-
|
|
420
|
-
my @values = pairvalues @kvlist;
|
|
421
|
-
|
|
422
|
-
I<Since version 1.29.>
|
|
423
|
-
|
|
424
|
-
A convenient shortcut to operating on even-sized lists of pairs, this function
|
|
425
|
-
returns a list of the second values of each of the pairs in the given list.
|
|
426
|
-
It is a more efficient version of
|
|
427
|
-
|
|
428
|
-
@values = pairmap { $b } @kvlist
|
|
429
|
-
|
|
430
|
-
=head2 pairgrep
|
|
431
|
-
|
|
432
|
-
my @kvlist = pairgrep { BLOCK } @kvlist;
|
|
433
|
-
|
|
434
|
-
my $count = pairgrep { BLOCK } @kvlist;
|
|
435
|
-
|
|
436
|
-
I<Since version 1.29.>
|
|
437
|
-
|
|
438
|
-
Similar to perl's C<grep> keyword, but interprets the given list as an
|
|
439
|
-
even-sized list of pairs. It invokes the C<BLOCK> multiple times, in scalar
|
|
440
|
-
context, with C<$a> and C<$b> set to successive pairs of values from the
|
|
441
|
-
C<@kvlist>.
|
|
442
|
-
|
|
443
|
-
Returns an even-sized list of those pairs for which the C<BLOCK> returned true
|
|
444
|
-
in list context, or the count of the B<number of pairs> in scalar context.
|
|
445
|
-
(Note, therefore, in scalar context that it returns a number half the size of
|
|
446
|
-
the count of items it would have returned in list context).
|
|
447
|
-
|
|
448
|
-
@subset = pairgrep { $a =~ m/^[[:upper:]]+$/ } @kvlist
|
|
449
|
-
|
|
450
|
-
As with C<grep> aliasing C<$_> to list elements, C<pairgrep> aliases C<$a> and
|
|
451
|
-
C<$b> to elements of the given list. Any modifications of it by the code block
|
|
452
|
-
will be visible to the caller.
|
|
453
|
-
|
|
454
|
-
=head2 pairfirst
|
|
455
|
-
|
|
456
|
-
my ( $key, $val ) = pairfirst { BLOCK } @kvlist;
|
|
457
|
-
|
|
458
|
-
my $found = pairfirst { BLOCK } @kvlist;
|
|
459
|
-
|
|
460
|
-
I<Since version 1.30.>
|
|
461
|
-
|
|
462
|
-
Similar to the L</first> function, but interprets the given list as an
|
|
463
|
-
even-sized list of pairs. It invokes the C<BLOCK> multiple times, in scalar
|
|
464
|
-
context, with C<$a> and C<$b> set to successive pairs of values from the
|
|
465
|
-
C<@kvlist>.
|
|
466
|
-
|
|
467
|
-
Returns the first pair of values from the list for which the C<BLOCK> returned
|
|
468
|
-
true in list context, or an empty list of no such pair was found. In scalar
|
|
469
|
-
context it returns a simple boolean value, rather than either the key or the
|
|
470
|
-
value found.
|
|
471
|
-
|
|
472
|
-
( $key, $value ) = pairfirst { $a =~ m/^[[:upper:]]+$/ } @kvlist
|
|
473
|
-
|
|
474
|
-
As with C<grep> aliasing C<$_> to list elements, C<pairfirst> aliases C<$a> and
|
|
475
|
-
C<$b> to elements of the given list. Any modifications of it by the code block
|
|
476
|
-
will be visible to the caller.
|
|
477
|
-
|
|
478
|
-
=head2 pairmap
|
|
479
|
-
|
|
480
|
-
my @list = pairmap { BLOCK } @kvlist;
|
|
481
|
-
|
|
482
|
-
my $count = pairmap { BLOCK } @kvlist;
|
|
483
|
-
|
|
484
|
-
I<Since version 1.29.>
|
|
485
|
-
|
|
486
|
-
Similar to perl's C<map> keyword, but interprets the given list as an
|
|
487
|
-
even-sized list of pairs. It invokes the C<BLOCK> multiple times, in list
|
|
488
|
-
context, with C<$a> and C<$b> set to successive pairs of values from the
|
|
489
|
-
C<@kvlist>.
|
|
490
|
-
|
|
491
|
-
Returns the concatenation of all the values returned by the C<BLOCK> in list
|
|
492
|
-
context, or the count of the number of items that would have been returned in
|
|
493
|
-
scalar context.
|
|
494
|
-
|
|
495
|
-
@result = pairmap { "The key $a has value $b" } @kvlist
|
|
496
|
-
|
|
497
|
-
As with C<map> aliasing C<$_> to list elements, C<pairmap> aliases C<$a> and
|
|
498
|
-
C<$b> to elements of the given list. Any modifications of it by the code block
|
|
499
|
-
will be visible to the caller.
|
|
500
|
-
|
|
501
|
-
See L</KNOWN BUGS> for a known-bug with C<pairmap>, and a workaround.
|
|
502
|
-
|
|
503
|
-
=cut
|
|
504
|
-
|
|
505
|
-
=head1 OTHER FUNCTIONS
|
|
506
|
-
|
|
507
|
-
=cut
|
|
508
|
-
|
|
509
|
-
=head2 shuffle
|
|
510
|
-
|
|
511
|
-
my @values = shuffle @values;
|
|
512
|
-
|
|
513
|
-
Returns the values of the input in a random order
|
|
514
|
-
|
|
515
|
-
@cards = shuffle 0..51 # 0..51 in a random order
|
|
516
|
-
|
|
517
|
-
This function is affected by the C<$RAND> variable.
|
|
518
|
-
|
|
519
|
-
=cut
|
|
520
|
-
|
|
521
|
-
=head2 sample
|
|
522
|
-
|
|
523
|
-
my @items = sample $count, @values
|
|
524
|
-
|
|
525
|
-
I<Since version 1.54.>
|
|
526
|
-
|
|
527
|
-
Randomly select the given number of elements from the input list. Any given
|
|
528
|
-
position in the input list will be selected at most once.
|
|
529
|
-
|
|
530
|
-
If there are fewer than C<$count> items in the list then the function will
|
|
531
|
-
return once all of them have been randomly selected; effectively the function
|
|
532
|
-
behaves similarly to L</shuffle>.
|
|
533
|
-
|
|
534
|
-
This function is affected by the C<$RAND> variable.
|
|
535
|
-
|
|
536
|
-
=head2 uniq
|
|
537
|
-
|
|
538
|
-
my @subset = uniq @values
|
|
539
|
-
|
|
540
|
-
I<Since version 1.45.>
|
|
541
|
-
|
|
542
|
-
Filters a list of values to remove subsequent duplicates, as judged by a
|
|
543
|
-
DWIM-ish string equality or C<undef> test. Preserves the order of unique
|
|
544
|
-
elements, and retains the first value of any duplicate set.
|
|
545
|
-
|
|
546
|
-
my $count = uniq @values
|
|
547
|
-
|
|
548
|
-
In scalar context, returns the number of elements that would have been
|
|
549
|
-
returned as a list.
|
|
550
|
-
|
|
551
|
-
The C<undef> value is treated by this function as distinct from the empty
|
|
552
|
-
string, and no warning will be produced. It is left as-is in the returned
|
|
553
|
-
list. Subsequent C<undef> values are still considered identical to the first,
|
|
554
|
-
and will be removed.
|
|
555
|
-
|
|
556
|
-
=head2 uniqint
|
|
557
|
-
|
|
558
|
-
my @subset = uniqint @values
|
|
559
|
-
|
|
560
|
-
I<Since version 1.55.>
|
|
561
|
-
|
|
562
|
-
Filters a list of values to remove subsequent duplicates, as judged by an
|
|
563
|
-
integer numerical equality test. Preserves the order of unique elements, and
|
|
564
|
-
retains the first value of any duplicate set. Values in the returned list will
|
|
565
|
-
be coerced into integers.
|
|
566
|
-
|
|
567
|
-
my $count = uniqint @values
|
|
568
|
-
|
|
569
|
-
In scalar context, returns the number of elements that would have been
|
|
570
|
-
returned as a list.
|
|
571
|
-
|
|
572
|
-
Note that C<undef> is treated much as other numerical operations treat it; it
|
|
573
|
-
compares equal to zero but additionally produces a warning if such warnings
|
|
574
|
-
are enabled (C<use warnings 'uninitialized';>). In addition, an C<undef> in
|
|
575
|
-
the returned list is coerced into a numerical zero, so that the entire list of
|
|
576
|
-
values returned by C<uniqint> are well-behaved as integers.
|
|
577
|
-
|
|
578
|
-
=head2 uniqnum
|
|
579
|
-
|
|
580
|
-
my @subset = uniqnum @values
|
|
581
|
-
|
|
582
|
-
I<Since version 1.44.>
|
|
583
|
-
|
|
584
|
-
Filters a list of values to remove subsequent duplicates, as judged by a
|
|
585
|
-
numerical equality test. Preserves the order of unique elements, and retains
|
|
586
|
-
the first value of any duplicate set.
|
|
587
|
-
|
|
588
|
-
my $count = uniqnum @values
|
|
589
|
-
|
|
590
|
-
In scalar context, returns the number of elements that would have been
|
|
591
|
-
returned as a list.
|
|
592
|
-
|
|
593
|
-
Note that C<undef> is treated much as other numerical operations treat it; it
|
|
594
|
-
compares equal to zero but additionally produces a warning if such warnings
|
|
595
|
-
are enabled (C<use warnings 'uninitialized';>). In addition, an C<undef> in
|
|
596
|
-
the returned list is coerced into a numerical zero, so that the entire list of
|
|
597
|
-
values returned by C<uniqnum> are well-behaved as numbers.
|
|
598
|
-
|
|
599
|
-
Note also that multiple IEEE C<NaN> values are treated as duplicates of
|
|
600
|
-
each other, regardless of any differences in their payloads, and despite
|
|
601
|
-
the fact that C<< 0+'NaN' == 0+'NaN' >> yields false.
|
|
602
|
-
|
|
603
|
-
=head2 uniqstr
|
|
604
|
-
|
|
605
|
-
my @subset = uniqstr @values
|
|
606
|
-
|
|
607
|
-
I<Since version 1.45.>
|
|
608
|
-
|
|
609
|
-
Filters a list of values to remove subsequent duplicates, as judged by a
|
|
610
|
-
string equality test. Preserves the order of unique elements, and retains the
|
|
611
|
-
first value of any duplicate set.
|
|
612
|
-
|
|
613
|
-
my $count = uniqstr @values
|
|
614
|
-
|
|
615
|
-
In scalar context, returns the number of elements that would have been
|
|
616
|
-
returned as a list.
|
|
617
|
-
|
|
618
|
-
Note that C<undef> is treated much as other string operations treat it; it
|
|
619
|
-
compares equal to the empty string but additionally produces a warning if such
|
|
620
|
-
warnings are enabled (C<use warnings 'uninitialized';>). In addition, an
|
|
621
|
-
C<undef> in the returned list is coerced into an empty string, so that the
|
|
622
|
-
entire list of values returned by C<uniqstr> are well-behaved as strings.
|
|
623
|
-
|
|
624
|
-
=cut
|
|
625
|
-
|
|
626
|
-
=head2 head
|
|
627
|
-
|
|
628
|
-
my @values = head $size, @list;
|
|
629
|
-
|
|
630
|
-
I<Since version 1.50.>
|
|
631
|
-
|
|
632
|
-
Returns the first C<$size> elements from C<@list>. If C<$size> is negative, returns
|
|
633
|
-
all but the last C<$size> elements from C<@list>.
|
|
634
|
-
|
|
635
|
-
@result = head 2, qw( foo bar baz );
|
|
636
|
-
# foo, bar
|
|
637
|
-
|
|
638
|
-
@result = head -2, qw( foo bar baz );
|
|
639
|
-
# foo
|
|
640
|
-
|
|
641
|
-
=head2 tail
|
|
642
|
-
|
|
643
|
-
my @values = tail $size, @list;
|
|
644
|
-
|
|
645
|
-
I<Since version 1.50.>
|
|
646
|
-
|
|
647
|
-
Returns the last C<$size> elements from C<@list>. If C<$size> is negative, returns
|
|
648
|
-
all but the first C<$size> elements from C<@list>.
|
|
649
|
-
|
|
650
|
-
@result = tail 2, qw( foo bar baz );
|
|
651
|
-
# bar, baz
|
|
652
|
-
|
|
653
|
-
@result = tail -2, qw( foo bar baz );
|
|
654
|
-
# baz
|
|
655
|
-
|
|
656
|
-
=head2 zip
|
|
657
|
-
|
|
658
|
-
my @result = zip [1..3], ['a'..'c'];
|
|
659
|
-
# [1, 'a'], [2, 'b'], [3, 'c']
|
|
660
|
-
|
|
661
|
-
I<Since version 1.56.>
|
|
662
|
-
|
|
663
|
-
Returns a list of array references, composed of elements from the given list
|
|
664
|
-
of array references. Each array in the returned list is composed of elements
|
|
665
|
-
at that corresponding position from each of the given input arrays. If any
|
|
666
|
-
input arrays run out of elements before others, then C<undef> will be inserted
|
|
667
|
-
into the result to fill in the gaps.
|
|
668
|
-
|
|
669
|
-
The C<zip> function is particularly handy for iterating over multiple arrays
|
|
670
|
-
at the same time with a C<foreach> loop, taking one element from each:
|
|
671
|
-
|
|
672
|
-
foreach ( zip \@xs, \@ys, \@zs ) {
|
|
673
|
-
my ($x, $y, $z) = @$_;
|
|
674
|
-
...
|
|
675
|
-
}
|
|
676
|
-
|
|
677
|
-
B<NOTE> to users of L<List::MoreUtils>: This function does not behave the same
|
|
678
|
-
as C<List::MoreUtils::zip>, but is actually a non-prototyped equivalent to
|
|
679
|
-
C<List::MoreUtils::zip_unflatten>. This function does not apply a prototype,
|
|
680
|
-
so make sure to invoke it with references to arrays.
|
|
681
|
-
|
|
682
|
-
For a function similar to the C<zip> function from C<List::MoreUtils>, see
|
|
683
|
-
L<mesh>.
|
|
684
|
-
|
|
685
|
-
my @result = zip_shortest ...
|
|
686
|
-
|
|
687
|
-
A variation of the function that differs in how it behaves when given input
|
|
688
|
-
arrays of differing lengths. C<zip_shortest> will stop as soon as any one of
|
|
689
|
-
the input arrays run out of elements, discarding any remaining unused values
|
|
690
|
-
from the others.
|
|
691
|
-
|
|
692
|
-
my @result = zip_longest ...
|
|
693
|
-
|
|
694
|
-
C<zip_longest> is an alias to the C<zip> function, provided simply to be
|
|
695
|
-
explicit about that behaviour as compared to C<zip_shortest>.
|
|
696
|
-
|
|
697
|
-
=head2 mesh
|
|
698
|
-
|
|
699
|
-
my @result = mesh [1..3], ['a'..'c'];
|
|
700
|
-
# (1, 'a', 2, 'b', 3, 'c')
|
|
701
|
-
|
|
702
|
-
I<Since version 1.56.>
|
|
703
|
-
|
|
704
|
-
Returns a list of items collected from elements of the given list of array
|
|
705
|
-
references. Each section of items in the returned list is composed of elements
|
|
706
|
-
at the corresponding position from each of the given input arrays. If any
|
|
707
|
-
input arrays run out of elements before others, then C<undef> will be inserted
|
|
708
|
-
into the result to fill in the gaps.
|
|
709
|
-
|
|
710
|
-
This is similar to L<zip>, except that all of the ranges in the result are
|
|
711
|
-
returned in one long flattened list, instead of being bundled into separate
|
|
712
|
-
arrays.
|
|
713
|
-
|
|
714
|
-
Because it returns a flat list of items, the C<mesh> function is particularly
|
|
715
|
-
useful for building a hash out of two separate arrays of keys and values:
|
|
716
|
-
|
|
717
|
-
my %hash = mesh \@keys, \@values;
|
|
718
|
-
|
|
719
|
-
my $href = { mesh \@keys, \@values };
|
|
720
|
-
|
|
721
|
-
B<NOTE> to users of L<List::MoreUtils>: This function is a non-prototyped
|
|
722
|
-
equivalent to C<List::MoreUtils::mesh> or C<List::MoreUtils::zip> (themselves
|
|
723
|
-
aliases of each other). This function does not apply a prototype, so make sure
|
|
724
|
-
to invoke it with references to arrays.
|
|
725
|
-
|
|
726
|
-
my @result = mesh_shortest ...
|
|
727
|
-
|
|
728
|
-
my @result = mesh_longest ...
|
|
729
|
-
|
|
730
|
-
These variations are similar to those of L<zip>, in that they differ in
|
|
731
|
-
behaviour when one of the input lists runs out of elements before the others.
|
|
732
|
-
|
|
733
|
-
=head1 CONFIGURATION VARIABLES
|
|
734
|
-
|
|
735
|
-
=head2 $RAND
|
|
736
|
-
|
|
737
|
-
local $List::Util::RAND = sub { ... };
|
|
738
|
-
|
|
739
|
-
I<Since version 1.54.>
|
|
740
|
-
|
|
741
|
-
This package variable is used by code which needs to generate random numbers
|
|
742
|
-
(such as the L</shuffle> and L</sample> functions). If set to a CODE reference
|
|
743
|
-
it provides an alternative to perl's builtin C<rand()> function. When a new
|
|
744
|
-
random number is needed this function will be invoked with no arguments and is
|
|
745
|
-
expected to return a floating-point value, of which only the fractional part
|
|
746
|
-
will be used.
|
|
747
|
-
|
|
748
|
-
=head1 KNOWN BUGS
|
|
749
|
-
|
|
750
|
-
=head2 RT #95409
|
|
751
|
-
|
|
752
|
-
L<https://rt.cpan.org/Ticket/Display.html?id=95409>
|
|
753
|
-
|
|
754
|
-
If the block of code given to L</pairmap> contains lexical variables that are
|
|
755
|
-
captured by a returned closure, and the closure is executed after the block
|
|
756
|
-
has been re-used for the next iteration, these lexicals will not see the
|
|
757
|
-
correct values. For example:
|
|
758
|
-
|
|
759
|
-
my @subs = pairmap {
|
|
760
|
-
my $var = "$a is $b";
|
|
761
|
-
sub { print "$var\n" };
|
|
762
|
-
} one => 1, two => 2, three => 3;
|
|
763
|
-
|
|
764
|
-
$_->() for @subs;
|
|
765
|
-
|
|
766
|
-
Will incorrectly print
|
|
767
|
-
|
|
768
|
-
three is 3
|
|
769
|
-
three is 3
|
|
770
|
-
three is 3
|
|
771
|
-
|
|
772
|
-
This is due to the performance optimisation of using C<MULTICALL> for the code
|
|
773
|
-
block, which means that fresh SVs do not get allocated for each call to the
|
|
774
|
-
block. Instead, the same SV is re-assigned for each iteration, and all the
|
|
775
|
-
closures will share the value seen on the final iteration.
|
|
776
|
-
|
|
777
|
-
To work around this bug, surround the code with a second set of braces. This
|
|
778
|
-
creates an inner block that defeats the C<MULTICALL> logic, and does get fresh
|
|
779
|
-
SVs allocated each time:
|
|
780
|
-
|
|
781
|
-
my @subs = pairmap {
|
|
782
|
-
{
|
|
783
|
-
my $var = "$a is $b";
|
|
784
|
-
sub { print "$var\n"; }
|
|
785
|
-
}
|
|
786
|
-
} one => 1, two => 2, three => 3;
|
|
787
|
-
|
|
788
|
-
This bug only affects closures that are generated by the block but used
|
|
789
|
-
afterwards. Lexical variables that are only used during the lifetime of the
|
|
790
|
-
block's execution will take their individual values for each invocation, as
|
|
791
|
-
normal.
|
|
792
|
-
|
|
793
|
-
=head2 uniqnum() on oversized bignums
|
|
794
|
-
|
|
795
|
-
Due to the way that C<uniqnum()> compares numbers, it cannot distinguish
|
|
796
|
-
differences between bignums (especially bigints) that are too large to fit in
|
|
797
|
-
the native platform types. For example,
|
|
798
|
-
|
|
799
|
-
my $x = Math::BigInt->new( "1" x 100 );
|
|
800
|
-
my $y = $x + 1;
|
|
801
|
-
|
|
802
|
-
say for uniqnum( $x, $y );
|
|
803
|
-
|
|
804
|
-
Will print just the value of C<$x>, believing that C<$y> is a numerically-
|
|
805
|
-
equivalent value. This bug does not affect C<uniqstr()>, which will correctly
|
|
806
|
-
observe that the two values stringify to different strings.
|
|
807
|
-
|
|
808
|
-
=head1 SUGGESTED ADDITIONS
|
|
809
|
-
|
|
810
|
-
The following are additions that have been requested, but I have been reluctant
|
|
811
|
-
to add due to them being very simple to implement in perl
|
|
812
|
-
|
|
813
|
-
# How many elements are true
|
|
814
|
-
|
|
815
|
-
sub true { scalar grep { $_ } @_ }
|
|
816
|
-
|
|
817
|
-
# How many elements are false
|
|
818
|
-
|
|
819
|
-
sub false { scalar grep { !$_ } @_ }
|
|
820
|
-
|
|
821
|
-
=head1 SEE ALSO
|
|
822
|
-
|
|
823
|
-
L<Scalar::Util>, L<List::MoreUtils>
|
|
824
|
-
|
|
825
|
-
=head1 COPYRIGHT
|
|
826
|
-
|
|
827
|
-
Copyright (c) 1997-2007 Graham Barr <gbarr@pobox.com>. All rights reserved.
|
|
828
|
-
This program is free software; you can redistribute it and/or
|
|
829
|
-
modify it under the same terms as Perl itself.
|
|
830
|
-
|
|
831
|
-
Recent additions and current maintenance by
|
|
832
|
-
Paul Evans, <leonerd@leonerd.org.uk>.
|
|
833
|
-
|
|
834
|
-
=cut
|
|
835
|
-
|
|
836
|
-
1;
|