@angular-wave/angular.ts 0.7.1 → 0.7.3
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/.github/workflows/ci.yml +1 -1
- package/.prettierignore +1 -0
- package/@types/core/cache/cache.d.ts +0 -5
- package/@types/core/di/internal-injector.d.ts +2 -5
- package/@types/core/di/ng-module.d.ts +0 -7
- package/@types/core/exception-handler.d.ts +2 -2
- package/@types/core/pubsub/pubsub.d.ts +3 -3
- package/@types/directive/channel/channel.d.ts +9 -3
- package/@types/directive/http/http.d.ts +39 -0
- package/@types/directive/if/if.d.ts +0 -2
- package/@types/interface.d.ts +16 -4
- package/@types/loader.d.ts +3 -3
- package/@types/public.d.ts +1 -2
- package/@types/shared/common.d.ts +7 -8
- package/Makefile +8 -0
- package/dist/angular-ts.esm.js +291 -68
- package/dist/angular-ts.umd.js +296 -72
- package/dist/angular-ts.umd.min.js +1 -1
- package/docs/README.md +69 -39
- package/docs/assets/scss/_variables_project.scss +6 -0
- package/docs/assets/scss/_variables_project_after_bs.scss +8 -0
- package/docs/assets/scss/index.scss +14 -0
- package/docs/content/{en/_index.md → _index.md} +6 -1
- package/docs/content/{en/docs → docs}/_index.md +9 -10
- package/docs/docker-compose.yaml +2 -3
- package/docs/hugo.yaml +17 -18
- package/docs/layouts/404.html +8 -2
- package/docs/static/typedoc/assets/hierarchy.js +1 -0
- package/docs/static/typedoc/assets/highlight.css +78 -0
- package/docs/static/typedoc/assets/icons.js +18 -0
- package/docs/static/typedoc/assets/main.js +60 -0
- package/docs/static/typedoc/assets/navigation.js +1 -0
- package/docs/static/typedoc/assets/search.js +1 -0
- package/docs/static/typedoc/assets/style.css +1640 -0
- package/docs/static/typedoc/hierarchy.html +1 -0
- package/docs/static/typedoc/index.html +1 -0
- package/docs/static/typedoc/interfaces/ChangesObject.html +6 -0
- package/docs/static/typedoc/interfaces/ComponentOptions.html +16 -0
- package/docs/static/typedoc/interfaces/Controller.html +12 -0
- package/docs/static/typedoc/interfaces/Directive.html +36 -0
- package/docs/static/typedoc/interfaces/DirectivePrePost.html +4 -0
- package/docs/static/typedoc/interfaces/NgModelController.html +30 -0
- package/docs/static/typedoc/interfaces/NgModelOptions.html +16 -0
- package/docs/static/typedoc/interfaces/Provider.html +28 -0
- package/docs/static/typedoc/interfaces/ServiceProvider.html +5 -0
- package/docs/static/typedoc/interfaces/TranscludeFunctionObject.html +8 -0
- package/docs/static/typedoc/types/AnnotatedFactory.html +8 -0
- package/docs/static/typedoc/types/CloneAttachFunction.html +2 -0
- package/docs/static/typedoc/types/ControllerConstructor.html +2 -0
- package/docs/static/typedoc/types/DirectiveCompileFn.html +2 -0
- package/docs/static/typedoc/types/DirectiveController.html +2 -0
- package/docs/static/typedoc/types/DirectiveFactory.html +2 -0
- package/docs/static/typedoc/types/DirectiveLinkFn.html +2 -0
- package/docs/static/typedoc/types/Expression.html +6 -0
- package/docs/static/typedoc/types/FilterFactory.html +2 -0
- package/docs/static/typedoc/types/FilterFn.html +2 -0
- package/docs/static/typedoc/types/Injectable.html +1 -0
- package/docs/static/typedoc/types/InjectableFactory.html +4 -0
- package/docs/static/typedoc/types/OnChangesObject.html +2 -0
- package/docs/static/typedoc/types/SwapInsertPosition.html +2 -0
- package/docs/static/typedoc/types/TController.html +2 -0
- package/legacy.d.ts +2695 -0
- package/package.json +2 -2
- package/playwright.config.ts +2 -0
- package/src/animations/animate.spec.js +1 -1
- package/src/binding.spec.js +1 -1
- package/src/core/cache/cache.js +0 -3
- package/src/core/compile/compile.js +3 -1
- package/src/core/compile/compile.spec.js +9 -95
- package/src/core/di/injector.js +1 -1
- package/src/core/di/injector.spec.js +0 -30
- package/src/core/di/internal-injector.js +2 -5
- package/src/core/di/ng-module.js +1 -23
- package/src/core/di/ng-module.spec.js +0 -6
- package/src/core/exception-handler.js +1 -1
- package/src/core/pubsub/pubsub.js +6 -6
- package/src/directive/channel/channel.js +8 -6
- package/src/directive/http/delete.spec.js +24 -0
- package/src/directive/http/get.spec.js +211 -0
- package/src/directive/http/http.html +22 -0
- package/src/directive/http/http.js +245 -0
- package/src/directive/http/http.test.js +12 -0
- package/src/directive/http/post-example.html +30 -0
- package/src/directive/http/post.spec.js +24 -0
- package/src/directive/http/put.spec.js +24 -0
- package/src/directive/if/if.js +0 -2
- package/src/directive/include/include.spec.js +0 -1
- package/src/directive/model-options/model-options.spec.js +1 -5
- package/src/directive/repeat/repeat.spec.js +1 -1
- package/src/directive/setter/setter.spec.js +1 -1
- package/src/directive/style/style.js +1 -1
- package/src/interface.ts +17 -4
- package/src/loader.js +6 -7
- package/src/loader.spec.js +0 -31
- package/src/public.js +12 -6
- package/src/services/http-backend/http-backend.js +3 -1
- package/src/shared/common.js +11 -36
- package/src/shared/common.spec.js +34 -3
- package/src/shared/dom.js +3 -14
- package/typedoc.json +3 -2
- package/utils/express.js +13 -0
- package/docs/netlify.toml +0 -12
- package/typedoc/assets/hierarchy.js +0 -2
- package/typedoc/assets/highlight.css +0 -209
- package/typedoc/assets/icons.js +0 -21
- package/typedoc/assets/main.js +0 -2589
- package/typedoc/assets/navigation.js +0 -2
- package/typedoc/assets/search.js +0 -2
- package/typedoc/assets/style.css +0 -1623
- package/typedoc/classes/animations_animate-cache.AnimateCacheProvider.html +0 -543
- package/typedoc/classes/animations_animate-css-driver.AnimateCssDriverProvider.html +0 -691
- package/typedoc/classes/animations_animate-css.AnimateCssProvider.html +0 -712
- package/typedoc/classes/animations_animate-js-driver.AnimateJsDriverProvider.html +0 -536
- package/typedoc/classes/animations_animate-js.AnimateJsProvider.html +0 -795
- package/typedoc/classes/animations_animate-queue.AnimateQueueProvider.html +0 -1137
- package/typedoc/classes/animations_animate-runner.AnimateAsyncRunFactoryProvider.html +0 -473
- package/typedoc/classes/animations_animate-runner.AnimateRunner.html +0 -1589
- package/typedoc/classes/animations_animate-runner.AnimateRunnerFactoryProvider.html +0 -474
- package/typedoc/classes/animations_animate.AnimateProvider.html +0 -1278
- package/typedoc/classes/animations_animation.AnimationProvider.html +0 -749
- package/typedoc/classes/animations_raf-scheduler.RafSchedulerProvider.html +0 -699
- package/typedoc/classes/core_cache_cache-factory.TemplateCacheProvider.html +0 -525
- package/typedoc/classes/core_compile_attributes.Attributes.html +0 -1776
- package/typedoc/classes/core_compile_compile.CompileProvider.html +0 -2137
- package/typedoc/classes/core_controller_controller.ControllerProvider.html +0 -894
- package/typedoc/classes/core_di_internal-injector.InjectorService.html +0 -1336
- package/typedoc/classes/core_di_internal-injector.ProviderInjector.html +0 -1242
- package/typedoc/classes/core_di_ng-module.NgModule.html +0 -1880
- package/typedoc/classes/core_exception-handler.ExceptionHandlerProvider.html +0 -631
- package/typedoc/classes/core_filter_filter.FilterProvider.html +0 -786
- package/typedoc/classes/core_interpolate_interpolate.InterpolateProvider.html +0 -1318
- package/typedoc/classes/core_location_location.Location.html +0 -2128
- package/typedoc/classes/core_location_location.LocationHashbangUrl.html +0 -2502
- package/typedoc/classes/core_location_location.LocationHtml5Url.html +0 -2490
- package/typedoc/classes/core_location_location.LocationProvider.html +0 -1023
- package/typedoc/classes/core_parse_ast_ast.AST.html +0 -2520
- package/typedoc/classes/core_parse_interpreter.ASTInterpreter.html +0 -3314
- package/typedoc/classes/core_parse_lexer_lexer.Lexer.html +0 -1788
- package/typedoc/classes/core_parse_parse.ParseProvider.html +0 -753
- package/typedoc/classes/core_parse_parser_parser.Parser.html +0 -741
- package/typedoc/classes/core_pubsub_pubsub.PubSub.html +0 -1346
- package/typedoc/classes/core_pubsub_pubsub.PubSubProvider.html +0 -576
- package/typedoc/classes/core_sanitize_sanitize-uri.SanitizeUriProvider.html +0 -696
- package/typedoc/classes/core_sce_sce.SceDelegateProvider.html +0 -1219
- package/typedoc/classes/core_sce_sce.SceProvider.html +0 -589
- package/typedoc/classes/core_scope_scope.RootScopeProvider.html +0 -520
- package/typedoc/classes/core_scope_scope.Scope.html +0 -2753
- package/typedoc/classes/core_task-tracker-factory.TaskTracker.html +0 -882
- package/typedoc/classes/core_task-tracker-factory.TaskTrackerFactoryProvider.html +0 -478
- package/typedoc/classes/directive_aria_aria.AriaProvider.html +0 -605
- package/typedoc/classes/directive_form_form.FormController.html +0 -2320
- package/typedoc/classes/directive_model_model.NgModelController.html +0 -4214
- package/typedoc/classes/loader.Angular.html +0 -1634
- package/typedoc/classes/router_common_glob.Glob.html +0 -904
- package/typedoc/classes/router_common_queue.Queue.html +0 -1284
- package/typedoc/classes/router_common_trace.Trace.html +0 -2020
- package/typedoc/classes/router_globals.RouterGlobals.html +0 -824
- package/typedoc/classes/router_params_param-factory.ParamFactory.html +0 -797
- package/typedoc/classes/router_params_param-type.ParamType.html +0 -1168
- package/typedoc/classes/router_params_param-types.ParamTypes.html +0 -770
- package/typedoc/classes/router_params_param.Param.html +0 -1614
- package/typedoc/classes/router_params_state-params.StateParams.html +0 -558
- package/typedoc/classes/router_path_path-node.PathNode.html +0 -1046
- package/typedoc/classes/router_path_path-utils.PathUtils.html +0 -1432
- package/typedoc/classes/router_resolve_resolvable.Resolvable.html +0 -1225
- package/typedoc/classes/router_resolve_resolve-context.ResolveContext.html +0 -1315
- package/typedoc/classes/router_state-provider.StateProvider.html +0 -957
- package/typedoc/classes/router_state_state-builder.StateBuilder.html +0 -1045
- package/typedoc/classes/router_state_state-matcher.StateMatcher.html +0 -742
- package/typedoc/classes/router_state_state-object.StateObject.html +0 -1515
- package/typedoc/classes/router_state_state-queue-manager.StateQueueManager.html +0 -941
- package/typedoc/classes/router_state_state-registry.StateRegistryProvider.html +0 -1712
- package/typedoc/classes/router_state_state-service.StateProvider.html +0 -3038
- package/typedoc/classes/router_state_target-state.TargetState.html +0 -1655
- package/typedoc/classes/router_state_views.ViewConfig.html +0 -1123
- package/typedoc/classes/router_template-factory.TemplateFactoryProvider.html +0 -1689
- package/typedoc/classes/router_transition_hook-builder.HookBuilder.html +0 -823
- package/typedoc/classes/router_transition_hook-registry.RegisteredHook.html +0 -1302
- package/typedoc/classes/router_transition_reject-factory.Rejection.html +0 -1299
- package/typedoc/classes/router_transition_transition-event-type.TransitionEventType.html +0 -995
- package/typedoc/classes/router_transition_transition-hook.TransitionHook.html +0 -1739
- package/typedoc/classes/router_transition_transition-service.TransitionProvider.html +0 -1763
- package/typedoc/classes/router_transition_transition.Transition.html +0 -3942
- package/typedoc/classes/router_url_url-config.UrlConfigProvider.html +0 -1198
- package/typedoc/classes/router_url_url-matcher.UrlMatcher.html +0 -2056
- package/typedoc/classes/router_url_url-rule.BaseUrlRule.html +0 -736
- package/typedoc/classes/router_url_url-rule.UrlRuleFactory.html +0 -1461
- package/typedoc/classes/router_url_url-rules.UrlRules.html +0 -1808
- package/typedoc/classes/router_url_url-service.UrlService.html +0 -2792
- package/typedoc/classes/router_view-scroll.ViewScrollProvider.html +0 -687
- package/typedoc/classes/router_view_view.ViewService.html +0 -1691
- package/typedoc/classes/services_anchor-scroll.AnchorScrollProvider.html +0 -618
- package/typedoc/classes/services_browser.Browser.html +0 -1331
- package/typedoc/classes/services_browser.BrowserProvider.html +0 -564
- package/typedoc/classes/services_http-backend_http-backend.HttpBackendProvider.html +0 -782
- package/typedoc/classes/services_http_http.HttpParamSerializerProvider.html +0 -535
- package/typedoc/classes/services_http_http.HttpProvider.html +0 -1537
- package/typedoc/classes/services_log.LogProvider.html +0 -776
- package/typedoc/classes/services_template-request.TemplateRequestProvider.html +0 -914
- package/typedoc/classes/shared_noderef.NodeRef.html +0 -1529
- package/typedoc/enums/core_parse_ast-type.ASTType.html +0 -903
- package/typedoc/enums/router_common_trace.Category.html +0 -492
- package/typedoc/enums/router_transition_interface.TransitionHookPhase.html +0 -489
- package/typedoc/enums/router_transition_interface.TransitionHookScope.html +0 -390
- package/typedoc/enums/router_transition_reject-factory.RejectType.html +0 -546
- package/typedoc/functions/animations_animate-cache.animateCache.html +0 -818
- package/typedoc/functions/animations_animate-children-directive.__AnimateChildrenDirective.html +0 -412
- package/typedoc/functions/animations_animate-swap.ngAnimateSwapDirective.html +0 -409
- package/typedoc/functions/animations_shared.applyAnimationClassesFactory.html +0 -294
- package/typedoc/functions/animations_shared.applyAnimationFromStyles.html +0 -297
- package/typedoc/functions/animations_shared.applyAnimationStyles.html +0 -296
- package/typedoc/functions/animations_shared.applyAnimationToStyles.html +0 -297
- package/typedoc/functions/animations_shared.applyGeneratedPreparationClasses.html +0 -311
- package/typedoc/functions/animations_shared.applyInlineStyle.html +0 -293
- package/typedoc/functions/animations_shared.assertArg.html +0 -303
- package/typedoc/functions/animations_shared.blockKeyframeAnimations.html +0 -299
- package/typedoc/functions/animations_shared.clearGeneratedClasses.html +0 -297
- package/typedoc/functions/animations_shared.concatWithSpace.html +0 -293
- package/typedoc/functions/animations_shared.extractElementNode.html +0 -292
- package/typedoc/functions/animations_shared.mergeAnimationDetails.html +0 -307
- package/typedoc/functions/animations_shared.mergeClasses.html +0 -293
- package/typedoc/functions/animations_shared.packageStyles.html +0 -299
- package/typedoc/functions/animations_shared.pendClasses.html +0 -303
- package/typedoc/functions/animations_shared.prepareAnimationOptions.html +0 -287
- package/typedoc/functions/animations_shared.removeFromArray.html +0 -293
- package/typedoc/functions/animations_shared.resolveElementClasses.html +0 -328
- package/typedoc/functions/animations_shared.stripCommentsFromElement.html +0 -299
- package/typedoc/functions/core_controller_controller.identifierForController.html +0 -299
- package/typedoc/functions/core_di_injector.annotate.html +0 -311
- package/typedoc/functions/core_di_injector.createInjector.html +0 -323
- package/typedoc/functions/core_location_location.serverBase.html +0 -285
- package/typedoc/functions/core_location_location.stripBaseUrl.html +0 -303
- package/typedoc/functions/core_location_location.stripFile.html +0 -285
- package/typedoc/functions/core_location_location.stripHash.html +0 -285
- package/typedoc/functions/core_parse_interpreter.isAssignable.html +0 -294
- package/typedoc/functions/core_parse_parse.constantWatchDelegate.html +0 -323
- package/typedoc/functions/core_sce_sce.adjustMatcher.html +0 -281
- package/typedoc/functions/core_sce_sce.escapeForRegexp.html +0 -281
- package/typedoc/functions/core_scope_scope.createScope.html +0 -334
- package/typedoc/functions/core_scope_scope.nextId.html +0 -268
- package/typedoc/functions/core_url-utils_url-utils.getBaseUrl.html +0 -274
- package/typedoc/functions/core_url-utils_url-utils.urlIsAllowedOriginFactory.html +0 -314
- package/typedoc/functions/core_url-utils_url-utils.urlIsSameOrigin.html +0 -303
- package/typedoc/functions/core_url-utils_url-utils.urlIsSameOriginAsBaseUrl.html +0 -309
- package/typedoc/functions/core_url-utils_url-utils.urlResolve.html +0 -285
- package/typedoc/functions/core_url-utils_url-utils.urlsAreSameOrigin.html +0 -320
- package/typedoc/functions/directive_aria_aria.ngCheckedAriaDirective.html +0 -400
- package/typedoc/functions/directive_aria_aria.ngClickAriaDirective.html +0 -489
- package/typedoc/functions/directive_aria_aria.ngDblclickAriaDirective.html +0 -428
- package/typedoc/functions/directive_aria_aria.ngDisabledAriaDirective.html +0 -400
- package/typedoc/functions/directive_aria_aria.ngHideAriaDirective.html +0 -399
- package/typedoc/functions/directive_aria_aria.ngMessagesAriaDirective.html +0 -334
- package/typedoc/functions/directive_aria_aria.ngModelAriaDirective.html +0 -512
- package/typedoc/functions/directive_aria_aria.ngReadonlyAriaDirective.html +0 -400
- package/typedoc/functions/directive_aria_aria.ngRequiredAriaDirective.html +0 -400
- package/typedoc/functions/directive_aria_aria.ngShowAriaDirective.html +0 -399
- package/typedoc/functions/directive_aria_aria.ngValueAriaDirective.html +0 -399
- package/typedoc/functions/directive_bind_bind.ngBindDirective.html +0 -279
- package/typedoc/functions/directive_bind_bind.ngBindHtmlDirective.html +0 -408
- package/typedoc/functions/directive_bind_bind.ngBindTemplateDirective.html +0 -283
- package/typedoc/functions/directive_channel_channel.ngChannelDirective.html +0 -312
- package/typedoc/functions/directive_cloak_cloak.ngCloakDirective.html +0 -279
- package/typedoc/functions/directive_controller_controller.ngControllerDirective.html +0 -283
- package/typedoc/functions/directive_events_events.createEventDirective.html +0 -353
- package/typedoc/functions/directive_form_form.setupValidity.html +0 -285
- package/typedoc/functions/directive_if_if.ngIfDirective.html +0 -407
- package/typedoc/functions/directive_include_include.ngIncludeDirective.html +0 -464
- package/typedoc/functions/directive_include_include.ngIncludeFillContentDirective.html +0 -419
- package/typedoc/functions/directive_init_init.ngInitDirective.html +0 -279
- package/typedoc/functions/directive_input_input.badInputChecker.html +0 -332
- package/typedoc/functions/directive_input_input.countDecimals.html +0 -285
- package/typedoc/functions/directive_input_input.createDateInputType.html +0 -392
- package/typedoc/functions/directive_input_input.createDateParser.html +0 -319
- package/typedoc/functions/directive_input_input.hiddenInputBrowserCacheDirective.html +0 -287
- package/typedoc/functions/directive_input_input.inputDirective.html +0 -523
- package/typedoc/functions/directive_input_input.isNumberInteger.html +0 -285
- package/typedoc/functions/directive_input_input.isValidForStep.html +0 -305
- package/typedoc/functions/directive_input_input.ngValueDirective.html +0 -279
- package/typedoc/functions/directive_input_input.numberFormatterParser.html +0 -289
- package/typedoc/functions/directive_input_input.numberInputType.html +0 -354
- package/typedoc/functions/directive_input_input.rangeInputType.html +0 -315
- package/typedoc/functions/directive_input_input.weekParser.html +0 -295
- package/typedoc/functions/directive_messages_messages.ngMessagesDirective.html +0 -464
- package/typedoc/functions/directive_messages_messages.ngMessagesIncludeDirective.html +0 -476
- package/typedoc/functions/directive_model-options_model-options.ngModelOptionsDirective.html +0 -283
- package/typedoc/functions/directive_model_model.ngModelDirective.html +0 -449
- package/typedoc/functions/directive_non-bindable_non-bindable.ngNonBindableDirective.html +0 -283
- package/typedoc/functions/directive_observe_observe.ngObserveDirective.html +0 -317
- package/typedoc/functions/directive_ref_ref.ngRefDirective.html +0 -483
- package/typedoc/functions/directive_repeat_repeat.ngRepeatDirective.html +0 -409
- package/typedoc/functions/directive_script_script.scriptDirective.html +0 -413
- package/typedoc/functions/directive_select_select.optionDirective.html +0 -498
- package/typedoc/functions/directive_select_select.selectDirective.html +0 -279
- package/typedoc/functions/directive_setter_setter.ngSetterDirective.html +0 -431
- package/typedoc/functions/directive_show-hide_show-hide.ngHideDirective.html +0 -405
- package/typedoc/functions/directive_show-hide_show-hide.ngShowDirective.html +0 -405
- package/typedoc/functions/directive_style_style.ngStyleDirective.html +0 -279
- package/typedoc/functions/directive_switch_switch.ngSwitchDefaultDirective.html +0 -283
- package/typedoc/functions/directive_switch_switch.ngSwitchDirective.html +0 -405
- package/typedoc/functions/directive_switch_switch.ngSwitchWhenDirective.html +0 -283
- package/typedoc/functions/filters_filter.filterFilter.html +0 -275
- package/typedoc/functions/filters_filters.formatNumber.html +0 -435
- package/typedoc/functions/filters_filters.jsonFilter.html +0 -277
- package/typedoc/functions/filters_limit-to.limitToFilter.html +0 -277
- package/typedoc/functions/filters_order-by.orderByFilter.html +0 -403
- package/typedoc/functions/public.publishExternalAPI.html +0 -305
- package/typedoc/functions/router_common_glob.hasGlobs.html +0 -292
- package/typedoc/functions/router_directives_state-directives._StateRefActiveDirective.html +0 -468
- package/typedoc/functions/router_directives_state-directives._StateRefDirective.html +0 -493
- package/typedoc/functions/router_directives_state-directives._StateRefDynamicDirective.html +0 -439
- package/typedoc/functions/router_directives_view-directive._ViewDirectiveFill.html +0 -477
- package/typedoc/functions/router_hooks_core-resolvables.registerAddCoreResolvables.html +0 -292
- package/typedoc/functions/router_hooks_core-resolvables.treeChangesCleanup.html +0 -288
- package/typedoc/functions/router_hooks_ignored-transition.registerIgnoredTransitionHook.html +0 -292
- package/typedoc/functions/router_hooks_invalid-transition.registerInvalidTransitionHook.html +0 -292
- package/typedoc/functions/router_hooks_lazy-load.lazyLoadState.html +0 -318
- package/typedoc/functions/router_hooks_lazy-load.registerLazyLoadHook.html +0 -381
- package/typedoc/functions/router_hooks_on-enter-exit-retain.registerOnEnterHook.html +0 -289
- package/typedoc/functions/router_hooks_on-enter-exit-retain.registerOnExitHook.html +0 -289
- package/typedoc/functions/router_hooks_on-enter-exit-retain.registerOnRetainHook.html +0 -289
- package/typedoc/functions/router_hooks_redirect-to.registerRedirectToHook.html +0 -300
- package/typedoc/functions/router_hooks_resolve.registerEagerResolvePath.html +0 -290
- package/typedoc/functions/router_hooks_resolve.registerLazyResolveState.html +0 -290
- package/typedoc/functions/router_hooks_resolve.registerResolveRemaining.html +0 -290
- package/typedoc/functions/router_hooks_update-globals.registerUpdateGlobalState.html +0 -292
- package/typedoc/functions/router_hooks_url.registerUpdateUrl.html +0 -309
- package/typedoc/functions/router_hooks_views.registerActivateViews.html +0 -300
- package/typedoc/functions/router_hooks_views.registerLoadEnteringViews.html +0 -292
- package/typedoc/functions/router_path_path-utils.makeTargetState.html +0 -324
- package/typedoc/functions/router_state-filters._IncludedByStateFilter.html +0 -437
- package/typedoc/functions/router_state-filters._IsStateFilter.html +0 -433
- package/typedoc/functions/router_state_state-builder.resolvablesBuilder.html +0 -347
- package/typedoc/functions/router_state_state-registry.getLocals.html +0 -285
- package/typedoc/functions/router_state_views.getViewConfigFactory.html +0 -300
- package/typedoc/functions/router_state_views.ng1ViewsBuilder.html +0 -304
- package/typedoc/functions/router_transition_hook-registry.makeEvent.html +0 -343
- package/typedoc/functions/router_transition_hook-registry.matchState.html +0 -334
- package/typedoc/functions/services_browser.trimEmptyHash.html +0 -291
- package/typedoc/functions/services_cookie-reader.getCookies.html +0 -272
- package/typedoc/functions/services_http-backend_http-backend.createHttpBackend.html +0 -406
- package/typedoc/functions/services_http_http.defaultHttpResponseTransform.html +0 -301
- package/typedoc/functions/shared_common._removeFrom.html +0 -291
- package/typedoc/functions/shared_common.allTrueR.html +0 -314
- package/typedoc/functions/shared_common.ancestors.html +0 -309
- package/typedoc/functions/shared_common.anyTrueR.html +0 -317
- package/typedoc/functions/shared_common.applyPairs.html +0 -322
- package/typedoc/functions/shared_common.arrayTuples.html +0 -313
- package/typedoc/functions/shared_common.assertFn.html +0 -306
- package/typedoc/functions/shared_common.copy.html +0 -292
- package/typedoc/functions/shared_common.createProxyFunctions.html +0 -430
- package/typedoc/functions/shared_common.defaults.html +0 -304
- package/typedoc/functions/shared_common.deregAll.html +0 -288
- package/typedoc/functions/shared_common.equals.html +0 -291
- package/typedoc/functions/shared_common.filter.html +0 -298
- package/typedoc/functions/shared_common.find.html +0 -295
- package/typedoc/functions/shared_common.flatten.html +0 -301
- package/typedoc/functions/shared_common.flattenR.html +0 -311
- package/typedoc/functions/shared_common.inherit.html +0 -317
- package/typedoc/functions/shared_common.map.html +0 -304
- package/typedoc/functions/shared_common.omit.html +0 -322
- package/typedoc/functions/shared_common.pairs.html +0 -305
- package/typedoc/functions/shared_common.pick.html +0 -334
- package/typedoc/functions/shared_common.pushR.html +0 -296
- package/typedoc/functions/shared_common.silenceUncaughtInPromise.html +0 -285
- package/typedoc/functions/shared_common.silentRejection.html +0 -281
- package/typedoc/functions/shared_common.tail.html +0 -282
- package/typedoc/functions/shared_common.uniqR.html +0 -292
- package/typedoc/functions/shared_common.unnest.html +0 -303
- package/typedoc/functions/shared_common.unnestR.html +0 -311
- package/typedoc/functions/shared_dom.appendNodesToElement.html +0 -316
- package/typedoc/functions/shared_dom.buildFragment.html +0 -284
- package/typedoc/functions/shared_dom.cleanElementData.html +0 -302
- package/typedoc/functions/shared_dom.createElementFromHTML.html +0 -299
- package/typedoc/functions/shared_dom.createNodelistFromHTML.html +0 -296
- package/typedoc/functions/shared_dom.dealoc.html +0 -295
- package/typedoc/functions/shared_dom.deleteCacheData.html +0 -306
- package/typedoc/functions/shared_dom.domInsert.html +0 -301
- package/typedoc/functions/shared_dom.emptyElement.html +0 -289
- package/typedoc/functions/shared_dom.getBlockNodes.html +0 -298
- package/typedoc/functions/shared_dom.getBooleanAttrName.html +0 -316
- package/typedoc/functions/shared_dom.getCacheData.html +0 -313
- package/typedoc/functions/shared_dom.getController.html +0 -318
- package/typedoc/functions/shared_dom.getExpando.html +0 -333
- package/typedoc/functions/shared_dom.getInheritedData.html +0 -294
- package/typedoc/functions/shared_dom.getInjector.html +0 -294
- package/typedoc/functions/shared_dom.getIsolateScope.html +0 -295
- package/typedoc/functions/shared_dom.getOrSetCacheData.html +0 -330
- package/typedoc/functions/shared_dom.getScope.html +0 -295
- package/typedoc/functions/shared_dom.isRoot.html +0 -286
- package/typedoc/functions/shared_dom.isTextNode.html +0 -290
- package/typedoc/functions/shared_dom.kebabToCamel.html +0 -289
- package/typedoc/functions/shared_dom.parseHtml.html +0 -295
- package/typedoc/functions/shared_dom.removeElement.html +0 -297
- package/typedoc/functions/shared_dom.removeElementData.html +0 -305
- package/typedoc/functions/shared_dom.setCacheData.html +0 -328
- package/typedoc/functions/shared_dom.setInheritedData.html +0 -312
- package/typedoc/functions/shared_dom.setIsolateScope.html +0 -310
- package/typedoc/functions/shared_dom.setScope.html +0 -318
- package/typedoc/functions/shared_dom.snakeToCamel.html +0 -286
- package/typedoc/functions/shared_dom.startingTag.html +0 -301
- package/typedoc/functions/shared_hof.all.html +0 -305
- package/typedoc/functions/shared_hof.compose.html +0 -306
- package/typedoc/functions/shared_hof.curry.html +0 -319
- package/typedoc/functions/shared_hof.is.html +0 -297
- package/typedoc/functions/shared_hof.or.html +0 -312
- package/typedoc/functions/shared_hof.parse.html +0 -292
- package/typedoc/functions/shared_hof.pattern.html +0 -343
- package/typedoc/functions/shared_hof.pipe.html +0 -289
- package/typedoc/functions/shared_hof.val.html +0 -288
- package/typedoc/functions/shared_predicates.isInjectable.html +0 -294
- package/typedoc/functions/shared_predicates.isPromise.html +0 -292
- package/typedoc/functions/shared_strings.beforeAfterSubstr.html +0 -302
- package/typedoc/functions/shared_strings.fnToString.html +0 -281
- package/typedoc/functions/shared_strings.functionToString.html +0 -281
- package/typedoc/functions/shared_strings.joinNeighborsR.html +0 -327
- package/typedoc/functions/shared_strings.kebobString.html +0 -281
- package/typedoc/functions/shared_strings.maxLength.html +0 -309
- package/typedoc/functions/shared_strings.padString.html +0 -312
- package/typedoc/functions/shared_strings.splitOnDelim.html +0 -328
- package/typedoc/functions/shared_strings.stringify.html +0 -281
- package/typedoc/functions/shared_strings.stripLastPathElement.html +0 -284
- package/typedoc/functions/shared_strings.trimHashVal.html +0 -281
- package/typedoc/functions/shared_test-utils.bootstrap.html +0 -297
- package/typedoc/functions/shared_test-utils.browserTrigger.html +0 -307
- package/typedoc/functions/shared_test-utils.wait.html +0 -301
- package/typedoc/functions/shared_utils.addDateMinutes.html +0 -291
- package/typedoc/functions/shared_utils.arrayRemove.html +0 -344
- package/typedoc/functions/shared_utils.assert.html +0 -300
- package/typedoc/functions/shared_utils.assertArg.html +0 -305
- package/typedoc/functions/shared_utils.assertArgFn.html +0 -302
- package/typedoc/functions/shared_utils.assertNotHasOwnProperty.html +0 -310
- package/typedoc/functions/shared_utils.baseExtend.html +0 -301
- package/typedoc/functions/shared_utils.bind.html +0 -333
- package/typedoc/functions/shared_utils.concat.html +0 -301
- package/typedoc/functions/shared_utils.convertTimezoneToLocal.html +0 -305
- package/typedoc/functions/shared_utils.csp.html +0 -263
- package/typedoc/functions/shared_utils.directiveNormalize.html +0 -295
- package/typedoc/functions/shared_utils.encodeUriQuery.html +0 -314
- package/typedoc/functions/shared_utils.encodeUriSegment.html +0 -302
- package/typedoc/functions/shared_utils.equals.html +0 -357
- package/typedoc/functions/shared_utils.errorHandlingConfig.html +0 -313
- package/typedoc/functions/shared_utils.extend.html +0 -323
- package/typedoc/functions/shared_utils.fromJson.html +0 -290
- package/typedoc/functions/shared_utils.getNgAttribute.html +0 -291
- package/typedoc/functions/shared_utils.getNodeName.html +0 -292
- package/typedoc/functions/shared_utils.hasAnimate.html +0 -286
- package/typedoc/functions/shared_utils.hasCustomToString.html +0 -281
- package/typedoc/functions/shared_utils.hasOwn.html +0 -339
- package/typedoc/functions/shared_utils.hashKey.html +0 -296
- package/typedoc/functions/shared_utils.includes.html +0 -291
- package/typedoc/functions/shared_utils.inherit.html +0 -294
- package/typedoc/functions/shared_utils.isArrayBuffer.html +0 -283
- package/typedoc/functions/shared_utils.isArrayLike.html +0 -290
- package/typedoc/functions/shared_utils.isBlankObject.html +0 -295
- package/typedoc/functions/shared_utils.isBlob.html +0 -283
- package/typedoc/functions/shared_utils.isBoolean.html +0 -283
- package/typedoc/functions/shared_utils.isDate.html +0 -281
- package/typedoc/functions/shared_utils.isDefined.html +0 -290
- package/typedoc/functions/shared_utils.isElement.html +0 -281
- package/typedoc/functions/shared_utils.isError.html +0 -296
- package/typedoc/functions/shared_utils.isFile.html +0 -283
- package/typedoc/functions/shared_utils.isFormData.html +0 -283
- package/typedoc/functions/shared_utils.isFunction.html +0 -290
- package/typedoc/functions/shared_utils.isNull.html +0 -290
- package/typedoc/functions/shared_utils.isNullOrUndefined.html +0 -290
- package/typedoc/functions/shared_utils.isNumber.html +0 -303
- package/typedoc/functions/shared_utils.isNumberNaN.html +0 -283
- package/typedoc/functions/shared_utils.isObject.html +0 -298
- package/typedoc/functions/shared_utils.isObjectEmpty.html +0 -283
- package/typedoc/functions/shared_utils.isPromiseLike.html +0 -283
- package/typedoc/functions/shared_utils.isProxy.html +0 -283
- package/typedoc/functions/shared_utils.isRegExp.html +0 -290
- package/typedoc/functions/shared_utils.isScope.html +0 -283
- package/typedoc/functions/shared_utils.isString.html +0 -290
- package/typedoc/functions/shared_utils.isTypedArray.html +0 -283
- package/typedoc/functions/shared_utils.isUndefined.html +0 -290
- package/typedoc/functions/shared_utils.isValidObjectMaxDepth.html +0 -287
- package/typedoc/functions/shared_utils.isWindow.html +0 -290
- package/typedoc/functions/shared_utils.lowercase.html +0 -302
- package/typedoc/functions/shared_utils.mergeClasses.html +0 -291
- package/typedoc/functions/shared_utils.minErr.html +0 -341
- package/typedoc/functions/shared_utils.nextUid.html +0 -268
- package/typedoc/functions/shared_utils.parseKeyValue.html +0 -288
- package/typedoc/functions/shared_utils.setHashKey.html +0 -303
- package/typedoc/functions/shared_utils.shallowCopy.html +0 -299
- package/typedoc/functions/shared_utils.simpleCompare.html +0 -291
- package/typedoc/functions/shared_utils.sliceArgs.html +0 -291
- package/typedoc/functions/shared_utils.snakeCase.html +0 -291
- package/typedoc/functions/shared_utils.stringify.html +0 -281
- package/typedoc/functions/shared_utils.timezoneToOffset.html +0 -291
- package/typedoc/functions/shared_utils.toDebugString.html +0 -281
- package/typedoc/functions/shared_utils.toInt.html +0 -280
- package/typedoc/functions/shared_utils.toJson.html +0 -350
- package/typedoc/functions/shared_utils.toKeyValue.html +0 -281
- package/typedoc/functions/shared_utils.trim.html +0 -280
- package/typedoc/functions/shared_utils.tryDecodeURIComponent.html +0 -300
- package/typedoc/functions/shared_utils.uppercase.html +0 -302
- package/typedoc/hierarchy.html +0 -274
- package/typedoc/index.html +0 -668
- package/typedoc/interfaces/animations_animate.AnimationOptions.html +0 -506
- package/typedoc/interfaces/animations_raf-scheduler.ServiceProvider.html +0 -390
- package/typedoc/interfaces/core_cache_cache.ExpandoStore.html +0 -448
- package/typedoc/interfaces/core_compile_compile.LinkFnMapping.html +0 -466
- package/typedoc/interfaces/core_compile_compile.NodeLinkFnCtx.html +0 -596
- package/typedoc/interfaces/core_compile_compile.SimpleChange.html +0 -412
- package/typedoc/interfaces/core_location_location.DefaultPorts.html +0 -444
- package/typedoc/interfaces/core_location_location.Html5Mode.html +0 -491
- package/typedoc/interfaces/core_parse_ast_ast.Token.html +0 -598
- package/typedoc/interfaces/core_parse_interface.CompiledExpressionHandlerMap.html +0 -570
- package/typedoc/interfaces/core_parse_interface.CompiledExpressionProps.html +0 -959
- package/typedoc/interfaces/core_parse_lexer_lexer.LexerOptions.html +0 -466
- package/typedoc/interfaces/core_parse_parser_parser.ParsedAST.html +0 -378
- package/typedoc/interfaces/core_sanitize_interface.SanitizerFn.html +0 -305
- package/typedoc/interfaces/core_scope_scope.AsyncQueueTask.html +0 -455
- package/typedoc/interfaces/core_scope_scope.Listener.html +0 -688
- package/typedoc/interfaces/directive_model-options_model-options.ModelOptionsConfig.html +0 -570
- package/typedoc/interfaces/interface.ChangesObject.html +0 -445
- package/typedoc/interfaces/interface.ComponentOptions.html +0 -712
- package/typedoc/interfaces/interface.Controller.html +0 -582
- package/typedoc/interfaces/interface.Directive.html +0 -1250
- package/typedoc/interfaces/interface.DirectivePrePost.html +0 -423
- package/typedoc/interfaces/interface.NgModelController.html +0 -1362
- package/typedoc/interfaces/interface.NgModelOptions.html +0 -660
- package/typedoc/interfaces/interface.Provider.html +0 -1056
- package/typedoc/interfaces/interface.TranscludeFunctionObject.html +0 -723
- package/typedoc/interfaces/loader.AngularBootstrapConfig.html +0 -374
- package/typedoc/interfaces/router_params_interface.ParamDeclaration.html +0 -1211
- package/typedoc/interfaces/router_params_interface.ParamTypeDefinition.html +0 -1273
- package/typedoc/interfaces/router_params_interface.RawParams.html +0 -295
- package/typedoc/interfaces/router_params_interface.Replace.html +0 -429
- package/typedoc/interfaces/router_resolve_interface.CustomAsyncPolicy.html +0 -291
- package/typedoc/interfaces/router_resolve_interface.ProviderLike.html +0 -580
- package/typedoc/interfaces/router_resolve_interface.ResolvableLiteral.html +0 -601
- package/typedoc/interfaces/router_resolve_interface.ResolvePolicy.html +0 -638
- package/typedoc/interfaces/router_state_interface.HrefOptions.html +0 -530
- package/typedoc/interfaces/router_state_interface.LazyLoadResult.html +0 -390
- package/typedoc/interfaces/router_state_interface.StateDeclaration.html +0 -2461
- package/typedoc/interfaces/router_state_interface.TargetStateDef.html +0 -468
- package/typedoc/interfaces/router_state_interface.TransitionPromise.html +0 -1192
- package/typedoc/interfaces/router_state_interface.ViewDeclaration.html +0 -1499
- package/typedoc/interfaces/router_template-factory.BindingTuple.html +0 -406
- package/typedoc/interfaces/router_transition_interface.HookMatchCriteria.html +0 -719
- package/typedoc/interfaces/router_transition_interface.HookRegOptions.html +0 -482
- package/typedoc/interfaces/router_transition_interface.IHookRegistry.html +0 -2969
- package/typedoc/interfaces/router_transition_interface.IMatchingNodes.html +0 -594
- package/typedoc/interfaces/router_transition_interface.PathType.html +0 -411
- package/typedoc/interfaces/router_transition_interface.PathTypes.html +0 -588
- package/typedoc/interfaces/router_transition_interface.RegisteredHooks.html +0 -266
- package/typedoc/interfaces/router_transition_interface.TransitionCreateHookFn.html +0 -316
- package/typedoc/interfaces/router_transition_interface.TransitionHookFn.html +0 -352
- package/typedoc/interfaces/router_transition_interface.TransitionHookOptions.html +0 -627
- package/typedoc/interfaces/router_transition_interface.TransitionOptions.html +0 -1096
- package/typedoc/interfaces/router_transition_interface.TransitionStateHookFn.html +0 -374
- package/typedoc/interfaces/router_transition_interface.TreeChanges.html +0 -769
- package/typedoc/interfaces/router_view_interface.ActiveUIView.html +0 -620
- package/typedoc/interfaces/router_view_interface.ViewConfig.html +0 -651
- package/typedoc/interfaces/router_view_interface.ViewContext.html +0 -419
- package/typedoc/interfaces/services_anchor-scroll.AnchorScrollObject.html +0 -379
- package/typedoc/interfaces/services_log.LogService.html +0 -566
- package/typedoc/interfaces/shared_interface.TypedMap.html +0 -268
- package/typedoc/interfaces/shared_utils.ErrorHandlingConfig.html +0 -435
- package/typedoc/media/CONTRIBUTING.md +0 -248
- package/typedoc/media/DEVELOPERS.md +0 -500
- package/typedoc/modules/animations_animate-cache.html +0 -383
- package/typedoc/modules/animations_animate-children-directive.html +0 -326
- package/typedoc/modules/animations_animate-css-driver.html +0 -324
- package/typedoc/modules/animations_animate-css.html +0 -320
- package/typedoc/modules/animations_animate-js-driver.html +0 -324
- package/typedoc/modules/animations_animate-js.html +0 -320
- package/typedoc/modules/animations_animate-queue.html +0 -320
- package/typedoc/modules/animations_animate-runner.html +0 -382
- package/typedoc/modules/animations_animate-swap.html +0 -320
- package/typedoc/modules/animations_animate.html +0 -447
- package/typedoc/modules/animations_animation.html +0 -320
- package/typedoc/modules/animations_interface.html +0 -322
- package/typedoc/modules/animations_raf-scheduler.html +0 -446
- package/typedoc/modules/animations_shared.html +0 -1535
- package/typedoc/modules/core_cache_cache-factory.html +0 -385
- package/typedoc/modules/core_cache_cache.html +0 -457
- package/typedoc/modules/core_compile_attributes.html +0 -319
- package/typedoc/modules/core_compile_compile.html +0 -755
- package/typedoc/modules/core_controller_controller.html +0 -385
- package/typedoc/modules/core_di_injector.html +0 -346
- package/typedoc/modules/core_di_internal-injector.html +0 -350
- package/typedoc/modules/core_di_ng-module.html +0 -490
- package/typedoc/modules/core_error-handler.html +0 -322
- package/typedoc/modules/core_exception-handler.html +0 -448
- package/typedoc/modules/core_filter_filter.html +0 -319
- package/typedoc/modules/core_interpolate_interpolate.html +0 -322
- package/typedoc/modules/core_location_location.html +0 -636
- package/typedoc/modules/core_parse_ast-type.html +0 -321
- package/typedoc/modules/core_parse_ast_ast-node.html +0 -322
- package/typedoc/modules/core_parse_ast_ast.html +0 -436
- package/typedoc/modules/core_parse_interface.html +0 -470
- package/typedoc/modules/core_parse_interpreter.html +0 -537
- package/typedoc/modules/core_parse_lexer_lexer.html +0 -440
- package/typedoc/modules/core_parse_lexer_token.html +0 -319
- package/typedoc/modules/core_parse_parse.html +0 -382
- package/typedoc/modules/core_parse_parser_parser.html +0 -381
- package/typedoc/modules/core_pubsub_pubsub.html +0 -471
- package/typedoc/modules/core_sanitize_interface.html +0 -320
- package/typedoc/modules/core_sanitize_sanitize-uri.html +0 -386
- package/typedoc/modules/core_sce_sce.html +0 -560
- package/typedoc/modules/core_scope_scope.html +0 -700
- package/typedoc/modules/core_task-tracker-factory.html +0 -481
- package/typedoc/modules/core_url-utils_url-utils.html +0 -527
- package/typedoc/modules/directive_aria_aria.html +0 -672
- package/typedoc/modules/directive_attrs_attrs.html +0 -350
- package/typedoc/modules/directive_bind_bind.html +0 -377
- package/typedoc/modules/directive_channel_channel.html +0 -322
- package/typedoc/modules/directive_class_class.html +0 -376
- package/typedoc/modules/directive_cloak_cloak.html +0 -320
- package/typedoc/modules/directive_controller_controller.html +0 -322
- package/typedoc/modules/directive_events_events.html +0 -383
- package/typedoc/modules/directive_form_form.html +0 -524
- package/typedoc/modules/directive_if_if.html +0 -319
- package/typedoc/modules/directive_include_include.html +0 -352
- package/typedoc/modules/directive_init_init.html +0 -319
- package/typedoc/modules/directive_input_input.html +0 -804
- package/typedoc/modules/directive_messages_messages.html +0 -473
- package/typedoc/modules/directive_model-options_model-options.html +0 -452
- package/typedoc/modules/directive_model_model.html +0 -445
- package/typedoc/modules/directive_non-bindable_non-bindable.html +0 -324
- package/typedoc/modules/directive_observe_observe.html +0 -322
- package/typedoc/modules/directive_options_options.html +0 -322
- package/typedoc/modules/directive_ref_ref.html +0 -319
- package/typedoc/modules/directive_repeat_repeat.html +0 -320
- package/typedoc/modules/directive_script_script.html +0 -320
- package/typedoc/modules/directive_select_select.html +0 -348
- package/typedoc/modules/directive_setter_setter.html +0 -320
- package/typedoc/modules/directive_show-hide_show-hide.html +0 -350
- package/typedoc/modules/directive_style_style.html +0 -320
- package/typedoc/modules/directive_switch_switch.html +0 -378
- package/typedoc/modules/directive_transclude_transclude.html +0 -322
- package/typedoc/modules/directive_validators_validators.html +0 -406
- package/typedoc/modules/filters_filter.html +0 -319
- package/typedoc/modules/filters_filters.html +0 -346
- package/typedoc/modules/filters_limit-to.html +0 -319
- package/typedoc/modules/filters_order-by.html +0 -319
- package/typedoc/modules/index.html +0 -241
- package/typedoc/modules/injection-tokens.html +0 -319
- package/typedoc/modules/interface.html +0 -1010
- package/typedoc/modules/loader.html +0 -380
- package/typedoc/modules/public.html +0 -380
- package/typedoc/modules/router_common_glob.html +0 -377
- package/typedoc/modules/router_common_queue.html +0 -315
- package/typedoc/modules/router_common_trace.html +0 -522
- package/typedoc/modules/router_directives_state-directives.html +0 -384
- package/typedoc/modules/router_directives_view-directive.html +0 -387
- package/typedoc/modules/router_globals.html +0 -383
- package/typedoc/modules/router_hooks_core-resolvables.html +0 -352
- package/typedoc/modules/router_hooks_ignored-transition.html +0 -324
- package/typedoc/modules/router_hooks_invalid-transition.html +0 -324
- package/typedoc/modules/router_hooks_lazy-load.html +0 -348
- package/typedoc/modules/router_hooks_on-enter-exit-retain.html +0 -380
- package/typedoc/modules/router_hooks_redirect-to.html +0 -320
- package/typedoc/modules/router_hooks_resolve.html +0 -443
- package/typedoc/modules/router_hooks_update-globals.html +0 -324
- package/typedoc/modules/router_hooks_url.html +0 -319
- package/typedoc/modules/router_hooks_views.html +0 -350
- package/typedoc/modules/router_params_interface.html +0 -402
- package/typedoc/modules/router_params_param-factory.html +0 -322
- package/typedoc/modules/router_params_param-type.html +0 -319
- package/typedoc/modules/router_params_param-types.html +0 -321
- package/typedoc/modules/router_params_param.html +0 -377
- package/typedoc/modules/router_params_state-params.html +0 -322
- package/typedoc/modules/router_path_path-node.html +0 -319
- package/typedoc/modules/router_path_path-utils.html +0 -382
- package/typedoc/modules/router_resolve_interface.html +0 -521
- package/typedoc/modules/router_resolve_resolvable.html +0 -384
- package/typedoc/modules/router_resolve_resolve-context.html +0 -385
- package/typedoc/modules/router_state-filters.html +0 -349
- package/typedoc/modules/router_state-provider.html +0 -319
- package/typedoc/modules/router_state_interface.html +0 -606
- package/typedoc/modules/router_state_state-builder.html +0 -385
- package/typedoc/modules/router_state_state-matcher.html +0 -322
- package/typedoc/modules/router_state_state-object.html +0 -385
- package/typedoc/modules/router_state_state-queue-manager.html +0 -324
- package/typedoc/modules/router_state_state-registry.html +0 -449
- package/typedoc/modules/router_state_state-service.html +0 -322
- package/typedoc/modules/router_state_target-state.html +0 -321
- package/typedoc/modules/router_state_views.html +0 -409
- package/typedoc/modules/router_template-factory.html +0 -383
- package/typedoc/modules/router_transition_hook-builder.html +0 -322
- package/typedoc/modules/router_transition_hook-registry.html +0 -413
- package/typedoc/modules/router_transition_interface.html +0 -927
- package/typedoc/modules/router_transition_reject-factory.html +0 -390
- package/typedoc/modules/router_transition_transition-event-type.html +0 -324
- package/typedoc/modules/router_transition_transition-hook.html +0 -324
- package/typedoc/modules/router_transition_transition-service.html +0 -387
- package/typedoc/modules/router_transition_transition.html +0 -386
- package/typedoc/modules/router_url_url-config.html +0 -320
- package/typedoc/modules/router_url_url-matcher.html +0 -319
- package/typedoc/modules/router_url_url-rule.html +0 -346
- package/typedoc/modules/router_url_url-rules.html +0 -319
- package/typedoc/modules/router_url_url-service.html +0 -319
- package/typedoc/modules/router_view-scroll.html +0 -319
- package/typedoc/modules/router_view_interface.html +0 -373
- package/typedoc/modules/router_view_view.html +0 -319
- package/typedoc/modules/services_anchor-scroll.html +0 -477
- package/typedoc/modules/services_browser.html +0 -472
- package/typedoc/modules/services_cookie-reader.html +0 -319
- package/typedoc/modules/services_http-backend_http-backend.html +0 -387
- package/typedoc/modules/services_http_http.html +0 -414
- package/typedoc/modules/services_log.html +0 -507
- package/typedoc/modules/services_template-request.html +0 -322
- package/typedoc/modules/shared_common.html +0 -1145
- package/typedoc/modules/shared_constants.html +0 -590
- package/typedoc/modules/shared_dom.html +0 -1185
- package/typedoc/modules/shared_hof.html +0 -566
- package/typedoc/modules/shared_interface.html +0 -436
- package/typedoc/modules/shared_noderef.html +0 -318
- package/typedoc/modules/shared_predicates.html +0 -346
- package/typedoc/modules/shared_strings.html +0 -732
- package/typedoc/modules/shared_test-utils.html +0 -369
- package/typedoc/modules/shared_utils.html +0 -2343
- package/typedoc/modules.html +0 -4406
- package/typedoc/types/animations_animate.AnimationMethod.html +0 -265
- package/typedoc/types/animations_interface.RafScheduler.html +0 -602
- package/typedoc/types/core_cache_cache-factory.TemplateCache.html +0 -257
- package/typedoc/types/core_compile_compile.ApplyDirectivesToNodeFn.html +0 -251
- package/typedoc/types/core_compile_compile.BoundTranscludeFn.html +0 -279
- package/typedoc/types/core_compile_compile.CompileFn.html +0 -445
- package/typedoc/types/core_compile_compile.CompileNodesFn.html +0 -252
- package/typedoc/types/core_compile_compile.CompositeLinkFn.html +0 -358
- package/typedoc/types/core_compile_compile.NodeLinkFn.html +0 -285
- package/typedoc/types/core_compile_compile.PublicLinkFn.html +0 -381
- package/typedoc/types/core_compile_compile.TranscludeFn.html +0 -364
- package/typedoc/types/core_error-handler.ErrorHandler.html +0 -321
- package/typedoc/types/core_exception-handler.LogService.html +0 -256
- package/typedoc/types/core_parse_ast_ast-node.ASTNode.html +0 -1457
- package/typedoc/types/core_parse_interface.CompiledExpression.html +0 -268
- package/typedoc/types/core_parse_interface.CompiledExpressionFunction.html +0 -347
- package/typedoc/types/core_parse_interface.ParseService.html +0 -474
- package/typedoc/types/core_parse_interpreter.DecoratedASTNode.html +0 -279
- package/typedoc/types/core_scope_scope.ListenerFunction.html +0 -313
- package/typedoc/types/core_task-tracker-factory.AnnotatedFactory.html +0 -278
- package/typedoc/types/core_url-utils_url-utils.HttpProtocol.html +0 -254
- package/typedoc/types/interface.CloneAttachFunction.html +0 -318
- package/typedoc/types/interface.ControllerConstructor.html +0 -315
- package/typedoc/types/interface.DirectiveCompileFn.html +0 -406
- package/typedoc/types/interface.DirectiveController.html +0 -274
- package/typedoc/types/interface.DirectiveFactory.html +0 -328
- package/typedoc/types/interface.DirectiveLinkFn.html +0 -420
- package/typedoc/types/interface.Expression.html +0 -259
- package/typedoc/types/interface.FilterFactory.html +0 -310
- package/typedoc/types/interface.FilterFn.html +0 -314
- package/typedoc/types/interface.Injectable.html +0 -257
- package/typedoc/types/interface.InjectableFactory.html +0 -309
- package/typedoc/types/interface.OnChangesObject.html +0 -259
- package/typedoc/types/interface.TController.html +0 -261
- package/typedoc/types/router_resolve_interface.PolicyAsync.html +0 -259
- package/typedoc/types/router_resolve_interface.PolicyWhen.html +0 -253
- package/typedoc/types/router_state_interface.RedirectToResult.html +0 -287
- package/typedoc/types/router_state_interface.ResolveTypes.html +0 -267
- package/typedoc/types/router_state_interface.StateOrName.html +0 -263
- package/typedoc/types/router_state_interface._StateDeclaration.html +0 -274
- package/typedoc/types/router_transition_interface.HookFn.html +0 -267
- package/typedoc/types/router_transition_interface.HookMatchCriterion.html +0 -270
- package/typedoc/types/router_transition_interface.HookResult.html +0 -310
- package/typedoc/types/router_transition_interface.IHookRegistration.html +0 -362
- package/typedoc/types/router_transition_interface.IStateMatch.html +0 -272
- package/typedoc/types/services_anchor-scroll.AnchorScrollFunction.html +0 -292
- package/typedoc/types/services_anchor-scroll.AnchorScrollService.html +0 -262
- package/typedoc/types/services_browser.UrlChangeListener.html +0 -250
- package/typedoc/types/services_log.LogCall.html +0 -294
- package/typedoc/types/shared_interface.Mapper.html +0 -337
- package/typedoc/types/shared_interface.Predicate.html +0 -305
- package/typedoc/types/shared_interface.PredicateBinary.html +0 -330
- package/typedoc/variables/animations_shared.ACTIVE_CLASS_SUFFIX.html +0 -251
- package/typedoc/variables/animations_shared.ADD_CLASS_SUFFIX.html +0 -249
- package/typedoc/variables/animations_shared.ANIMATIONEND_EVENT.html +0 -249
- package/typedoc/variables/animations_shared.ANIMATION_DELAY_PROP.html +0 -252
- package/typedoc/variables/animations_shared.ANIMATION_DURATION_PROP.html +0 -252
- package/typedoc/variables/animations_shared.ANIMATION_ITERATION_COUNT_KEY.html +0 -255
- package/typedoc/variables/animations_shared.ANIMATION_PLAYSTATE_KEY.html +0 -251
- package/typedoc/variables/animations_shared.ANIMATION_PROP.html +0 -249
- package/typedoc/variables/animations_shared.CSS_PREFIX.html +0 -250
- package/typedoc/variables/animations_shared.DELAY_KEY.html +0 -249
- package/typedoc/variables/animations_shared.DURATION_KEY.html +0 -249
- package/typedoc/variables/animations_shared.EVENT_CLASS_PREFIX.html +0 -249
- package/typedoc/variables/animations_shared.NG_ANIMATE_CHILDREN_DATA.html +0 -253
- package/typedoc/variables/animations_shared.NG_ANIMATE_CLASSNAME.html +0 -251
- package/typedoc/variables/animations_shared.PREPARE_CLASS_SUFFIX.html +0 -251
- package/typedoc/variables/animations_shared.PROPERTY_KEY.html +0 -250
- package/typedoc/variables/animations_shared.REMOVE_CLASS_SUFFIX.html +0 -251
- package/typedoc/variables/animations_shared.SAFE_FAST_FORWARD_DURATION_VALUE.html +0 -257
- package/typedoc/variables/animations_shared.TIMING_KEY.html +0 -249
- package/typedoc/variables/animations_shared.TRANSITIONEND_EVENT.html +0 -249
- package/typedoc/variables/animations_shared.TRANSITION_DELAY_PROP.html +0 -252
- package/typedoc/variables/animations_shared.TRANSITION_DURATION_PROP.html +0 -252
- package/typedoc/variables/animations_shared.TRANSITION_PROP.html +0 -249
- package/typedoc/variables/animations_shared.ngMinErr.html +0 -307
- package/typedoc/variables/core_cache_cache.Cache.html +0 -267
- package/typedoc/variables/core_cache_cache.EXPANDO.html +0 -250
- package/typedoc/variables/core_cache_cache.ISOLATE_SCOPE_KEY.html +0 -253
- package/typedoc/variables/core_cache_cache.SCOPE_KEY.html +0 -253
- package/typedoc/variables/core_compile_compile.DirectiveSuffix.html +0 -251
- package/typedoc/variables/core_di_ng-module.ANIMATION_LITERAL.html +0 -249
- package/typedoc/variables/core_di_ng-module.COMPILE_LITERAL.html +0 -249
- package/typedoc/variables/core_di_ng-module.CONTROLLER_LITERAL.html +0 -251
- package/typedoc/variables/core_di_ng-module.FILTER_LITERAL.html +0 -249
- package/typedoc/variables/core_di_ng-module.INJECTOR_LITERAL.html +0 -249
- package/typedoc/variables/core_parse_interpreter.PURITY_ABSOLUTE.html +0 -251
- package/typedoc/variables/core_parse_interpreter.PURITY_RELATIVE.html +0 -251
- package/typedoc/variables/core_pubsub_pubsub.EventBus.html +0 -255
- package/typedoc/variables/core_sce_sce.SCE_CONTEXTS.html +0 -327
- package/typedoc/variables/core_scope_scope.NONSCOPE.html +0 -253
- package/typedoc/variables/core_scope_scope.__applyAsyncQueue.html +0 -252
- package/typedoc/variables/core_scope_scope._postUpdateQueue.html +0 -252
- package/typedoc/variables/directive_attrs_attrs.REGEX_STRING_REGEXP.html +0 -254
- package/typedoc/variables/directive_attrs_attrs.ngAttributeAliasDirectives.html +0 -262
- package/typedoc/variables/directive_class_class.ngClassDirective.html +0 -285
- package/typedoc/variables/directive_class_class.ngClassEvenDirective.html +0 -287
- package/typedoc/variables/directive_class_class.ngClassOddDirective.html +0 -287
- package/typedoc/variables/directive_events_events.ngEventDirectives.html +0 -256
- package/typedoc/variables/directive_form_form.PENDING_CLASS.html +0 -251
- package/typedoc/variables/directive_form_form.formDirective.html +0 -340
- package/typedoc/variables/directive_form_form.ngFormDirective.html +0 -340
- package/typedoc/variables/directive_form_form.nullFormCtrl.html +0 -424
- package/typedoc/variables/directive_input_input.EMAIL_REGEXP.html +0 -252
- package/typedoc/variables/directive_input_input.ISO_DATE_REGEXP.html +0 -252
- package/typedoc/variables/directive_input_input.URL_REGEXP.html +0 -252
- package/typedoc/variables/directive_input_input.VALIDITY_STATE_PROPERTY.html +0 -253
- package/typedoc/variables/directive_messages_messages.ngMessageDefaultDirective.html +0 -496
- package/typedoc/variables/directive_messages_messages.ngMessageDirective.html +0 -492
- package/typedoc/variables/directive_messages_messages.ngMessageExpDirective.html +0 -494
- package/typedoc/variables/directive_model-options_model-options.defaultModelOptions.html +0 -254
- package/typedoc/variables/directive_model_model.ngModelMinErr.html +0 -309
- package/typedoc/variables/directive_options_options.ngOptionsDirective.html +0 -692
- package/typedoc/variables/directive_transclude_transclude.ngTranscludeDirective.html +0 -343
- package/typedoc/variables/directive_validators_validators.maxlengthDirective.html +0 -401
- package/typedoc/variables/directive_validators_validators.minlengthDirective.html +0 -363
- package/typedoc/variables/directive_validators_validators.patternDirective.html +0 -424
- package/typedoc/variables/directive_validators_validators.requiredDirective.html +0 -388
- package/typedoc/variables/injection-tokens._injectTokens.html +0 -270
- package/typedoc/variables/public.VERSION.html +0 -247
- package/typedoc/variables/router_common_trace.trace.html +0 -287
- package/typedoc/variables/router_directives_view-directive.ngView.html +0 -499
- package/typedoc/variables/router_hooks_resolve.RESOLVE_HOOK_PRIORITY.html +0 -253
- package/typedoc/variables/router_params_param.DefType.html +0 -251
- package/typedoc/variables/router_resolve_resolvable.defaultResolvePolicy.html +0 -279
- package/typedoc/variables/router_resolve_resolve-context.resolvePolicies.html +0 -315
- package/typedoc/variables/router_transition_transition-service.defaultTransOpts.html +0 -380
- package/typedoc/variables/services_log.LogService.html +0 -252
- package/typedoc/variables/shared_common.assertMap.html +0 -344
- package/typedoc/variables/shared_common.assertPredicate.html +0 -344
- package/typedoc/variables/shared_common.pushTo.html +0 -252
- package/typedoc/variables/shared_common.removeFrom.html +0 -255
- package/typedoc/variables/shared_constants.ALIASED_ATTR.html +0 -329
- package/typedoc/variables/shared_constants.DIRTY_CLASS.html +0 -249
- package/typedoc/variables/shared_constants.EMPTY_CLASS.html +0 -249
- package/typedoc/variables/shared_constants.INVALID_CLASS.html +0 -249
- package/typedoc/variables/shared_constants.NOT_EMPTY_CLASS.html +0 -249
- package/typedoc/variables/shared_constants.PREFIX_REGEXP.html +0 -250
- package/typedoc/variables/shared_constants.PRISTINE_CLASS.html +0 -249
- package/typedoc/variables/shared_constants.SPECIAL_CHARS_REGEXP.html +0 -252
- package/typedoc/variables/shared_constants.TOUCHED_CLASS.html +0 -249
- package/typedoc/variables/shared_constants.UNTOUCHED_CLASS.html +0 -249
- package/typedoc/variables/shared_constants.VALID_CLASS.html +0 -249
- package/typedoc/variables/shared_dom.BOOLEAN_ATTR.html +0 -253
- package/typedoc/variables/shared_hof.propEq.html +0 -258
- package/typedoc/variables/shared_strings.hostRegex.html +0 -248
- package/typedoc/variables/shared_strings.splitEqual.html +0 -291
- package/typedoc/variables/shared_strings.splitHash.html +0 -291
- package/typedoc/variables/shared_strings.splitQuery.html +0 -291
- package/typedoc/variables/shared_utils.isProxySymbol.html +0 -250
- package/typedoc/variables/shared_utils.ngAttrPrefixes.html +0 -249
- /package/{typedoc → docs/static/typedoc}/.nojekyll +0 -0
- /package/{typedoc → docs/static/typedoc}/assets/icons.svg +0 -0
|
@@ -1,3314 +0,0 @@
|
|
|
1
|
-
<!doctype html>
|
|
2
|
-
<html class="default" lang="en" data-base="../">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8" />
|
|
5
|
-
<meta http-equiv="x-ua-compatible" content="IE=edge" />
|
|
6
|
-
<title>ASTInterpreter | AngularTS</title>
|
|
7
|
-
<meta name="description" content="Documentation for AngularTS" />
|
|
8
|
-
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
9
|
-
<link rel="stylesheet" href="../assets/style.css" />
|
|
10
|
-
<link rel="stylesheet" href="../assets/highlight.css" />
|
|
11
|
-
<script defer src="../assets/main.js"></script>
|
|
12
|
-
<script async src="../assets/icons.js" id="tsd-icons-script"></script>
|
|
13
|
-
<script async src="../assets/search.js" id="tsd-search-script"></script>
|
|
14
|
-
<script async src="../assets/navigation.js" id="tsd-nav-script"></script>
|
|
15
|
-
<script
|
|
16
|
-
async
|
|
17
|
-
src="../assets/hierarchy.js"
|
|
18
|
-
id="tsd-hierarchy-script"
|
|
19
|
-
></script>
|
|
20
|
-
</head>
|
|
21
|
-
<body>
|
|
22
|
-
<script>
|
|
23
|
-
document.documentElement.dataset.theme =
|
|
24
|
-
localStorage.getItem("tsd-theme") || "os";
|
|
25
|
-
document.body.style.display = "none";
|
|
26
|
-
setTimeout(
|
|
27
|
-
() =>
|
|
28
|
-
window.app
|
|
29
|
-
? app.showPage()
|
|
30
|
-
: document.body.style.removeProperty("display"),
|
|
31
|
-
500,
|
|
32
|
-
);
|
|
33
|
-
</script>
|
|
34
|
-
<header class="tsd-page-toolbar">
|
|
35
|
-
<div class="tsd-toolbar-contents container">
|
|
36
|
-
<a href="../index.html" class="title">AngularTS</a>
|
|
37
|
-
<div id="tsd-toolbar-links"></div>
|
|
38
|
-
<button id="tsd-search-trigger" class="tsd-widget" aria-label="Search">
|
|
39
|
-
<svg
|
|
40
|
-
width="16"
|
|
41
|
-
height="16"
|
|
42
|
-
viewBox="0 0 16 16"
|
|
43
|
-
fill="none"
|
|
44
|
-
aria-hidden="true"
|
|
45
|
-
>
|
|
46
|
-
<use href="../assets/icons.svg#icon-search"></use>
|
|
47
|
-
</svg>
|
|
48
|
-
</button>
|
|
49
|
-
<dialog id="tsd-search" aria-label="Search">
|
|
50
|
-
<input
|
|
51
|
-
role="combobox"
|
|
52
|
-
id="tsd-search-input"
|
|
53
|
-
aria-controls="tsd-search-results"
|
|
54
|
-
aria-autocomplete="list"
|
|
55
|
-
aria-expanded="true"
|
|
56
|
-
autocapitalize="off"
|
|
57
|
-
autocomplete="off"
|
|
58
|
-
placeholder="Search the docs"
|
|
59
|
-
maxlength="100"
|
|
60
|
-
/>
|
|
61
|
-
<ul role="listbox" id="tsd-search-results"></ul>
|
|
62
|
-
<div id="tsd-search-status" aria-live="polite" aria-atomic="true">
|
|
63
|
-
<div>Preparing search index...</div>
|
|
64
|
-
</div>
|
|
65
|
-
</dialog>
|
|
66
|
-
<a
|
|
67
|
-
href="#"
|
|
68
|
-
class="tsd-widget menu"
|
|
69
|
-
id="tsd-toolbar-menu-trigger"
|
|
70
|
-
data-toggle="menu"
|
|
71
|
-
aria-label="Menu"
|
|
72
|
-
><svg
|
|
73
|
-
width="16"
|
|
74
|
-
height="16"
|
|
75
|
-
viewBox="0 0 16 16"
|
|
76
|
-
fill="none"
|
|
77
|
-
aria-hidden="true"
|
|
78
|
-
>
|
|
79
|
-
<use href="../assets/icons.svg#icon-menu"></use></svg
|
|
80
|
-
></a>
|
|
81
|
-
</div>
|
|
82
|
-
</header>
|
|
83
|
-
<div class="container container-main">
|
|
84
|
-
<div class="col-content">
|
|
85
|
-
<div class="tsd-page-title">
|
|
86
|
-
<ul class="tsd-breadcrumb" aria-label="Breadcrumb">
|
|
87
|
-
<li>
|
|
88
|
-
<a href="../modules/core_parse_interpreter.html"
|
|
89
|
-
>core/parse/interpreter</a
|
|
90
|
-
>
|
|
91
|
-
</li>
|
|
92
|
-
<li><a href="" aria-current="page">ASTInterpreter</a></li>
|
|
93
|
-
</ul>
|
|
94
|
-
<h1>Class ASTInterpreter</h1>
|
|
95
|
-
</div>
|
|
96
|
-
<section class="tsd-panel-group tsd-index-group">
|
|
97
|
-
<section class="tsd-panel tsd-index-panel">
|
|
98
|
-
<details class="tsd-index-content tsd-accordion" open>
|
|
99
|
-
<summary class="tsd-accordion-summary tsd-index-summary">
|
|
100
|
-
<svg
|
|
101
|
-
width="20"
|
|
102
|
-
height="20"
|
|
103
|
-
viewBox="0 0 24 24"
|
|
104
|
-
fill="none"
|
|
105
|
-
aria-hidden="true"
|
|
106
|
-
>
|
|
107
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
108
|
-
</svg>
|
|
109
|
-
<h5 class="tsd-index-heading uppercase">Index</h5>
|
|
110
|
-
</summary>
|
|
111
|
-
<div class="tsd-accordion-details">
|
|
112
|
-
<section class="tsd-index-section">
|
|
113
|
-
<h3 class="tsd-index-heading">Constructors</h3>
|
|
114
|
-
<div class="tsd-index-list">
|
|
115
|
-
<a href="#constructor" class="tsd-index-link"
|
|
116
|
-
><svg
|
|
117
|
-
class="tsd-kind-icon"
|
|
118
|
-
viewBox="0 0 24 24"
|
|
119
|
-
aria-label="Constructor"
|
|
120
|
-
>
|
|
121
|
-
<use href="../assets/icons.svg#icon-512"></use></svg
|
|
122
|
-
><span>constructor</span></a
|
|
123
|
-
>
|
|
124
|
-
</div>
|
|
125
|
-
</section>
|
|
126
|
-
<section class="tsd-index-section">
|
|
127
|
-
<h3 class="tsd-index-heading">Properties</h3>
|
|
128
|
-
<div class="tsd-index-list">
|
|
129
|
-
<a href="#filter" class="tsd-index-link"
|
|
130
|
-
><svg
|
|
131
|
-
class="tsd-kind-icon"
|
|
132
|
-
viewBox="0 0 24 24"
|
|
133
|
-
aria-label="Property"
|
|
134
|
-
>
|
|
135
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
136
|
-
><span>$filter</span></a
|
|
137
|
-
>
|
|
138
|
-
</div>
|
|
139
|
-
</section>
|
|
140
|
-
<section class="tsd-index-section">
|
|
141
|
-
<h3 class="tsd-index-heading">Methods</h3>
|
|
142
|
-
<div class="tsd-index-list">
|
|
143
|
-
<a href="#binary-" class="tsd-index-link"
|
|
144
|
-
><svg
|
|
145
|
-
class="tsd-kind-icon"
|
|
146
|
-
viewBox="0 0 24 24"
|
|
147
|
-
aria-label="Method"
|
|
148
|
-
>
|
|
149
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
150
|
-
><span>binary-</span></a
|
|
151
|
-
>
|
|
152
|
-
<a href="#binary" class="tsd-index-link"
|
|
153
|
-
><svg
|
|
154
|
-
class="tsd-kind-icon"
|
|
155
|
-
viewBox="0 0 24 24"
|
|
156
|
-
aria-label="Method"
|
|
157
|
-
>
|
|
158
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
159
|
-
><span>binary!=</span></a
|
|
160
|
-
>
|
|
161
|
-
<a href="#binary-2" class="tsd-index-link"
|
|
162
|
-
><svg
|
|
163
|
-
class="tsd-kind-icon"
|
|
164
|
-
viewBox="0 0 24 24"
|
|
165
|
-
aria-label="Method"
|
|
166
|
-
>
|
|
167
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
168
|
-
><span>binary!==</span></a
|
|
169
|
-
>
|
|
170
|
-
<a href="#binary-4" class="tsd-index-link"
|
|
171
|
-
><svg
|
|
172
|
-
class="tsd-kind-icon"
|
|
173
|
-
viewBox="0 0 24 24"
|
|
174
|
-
aria-label="Method"
|
|
175
|
-
>
|
|
176
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
177
|
-
><span>binary*</span></a
|
|
178
|
-
>
|
|
179
|
-
<a href="#binary-6" class="tsd-index-link"
|
|
180
|
-
><svg
|
|
181
|
-
class="tsd-kind-icon"
|
|
182
|
-
viewBox="0 0 24 24"
|
|
183
|
-
aria-label="Method"
|
|
184
|
-
>
|
|
185
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
186
|
-
><span>binary/</span></a
|
|
187
|
-
>
|
|
188
|
-
<a href="#binary-8" class="tsd-index-link"
|
|
189
|
-
><svg
|
|
190
|
-
class="tsd-kind-icon"
|
|
191
|
-
viewBox="0 0 24 24"
|
|
192
|
-
aria-label="Method"
|
|
193
|
-
>
|
|
194
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
195
|
-
><span>binary&&</span></a
|
|
196
|
-
>
|
|
197
|
-
<a href="#binary-10" class="tsd-index-link"
|
|
198
|
-
><svg
|
|
199
|
-
class="tsd-kind-icon"
|
|
200
|
-
viewBox="0 0 24 24"
|
|
201
|
-
aria-label="Method"
|
|
202
|
-
>
|
|
203
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
204
|
-
><span>binary%</span></a
|
|
205
|
-
>
|
|
206
|
-
<a href="#binary-12" class="tsd-index-link"
|
|
207
|
-
><svg
|
|
208
|
-
class="tsd-kind-icon"
|
|
209
|
-
viewBox="0 0 24 24"
|
|
210
|
-
aria-label="Method"
|
|
211
|
-
>
|
|
212
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
213
|
-
><span>binary+</span></a
|
|
214
|
-
>
|
|
215
|
-
<a href="#binary-14" class="tsd-index-link"
|
|
216
|
-
><svg
|
|
217
|
-
class="tsd-kind-icon"
|
|
218
|
-
viewBox="0 0 24 24"
|
|
219
|
-
aria-label="Method"
|
|
220
|
-
>
|
|
221
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
222
|
-
><span>binary<</span></a
|
|
223
|
-
>
|
|
224
|
-
<a href="#binary-16" class="tsd-index-link"
|
|
225
|
-
><svg
|
|
226
|
-
class="tsd-kind-icon"
|
|
227
|
-
viewBox="0 0 24 24"
|
|
228
|
-
aria-label="Method"
|
|
229
|
-
>
|
|
230
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
231
|
-
><span>binary<=</span></a
|
|
232
|
-
>
|
|
233
|
-
<a href="#binary-18" class="tsd-index-link"
|
|
234
|
-
><svg
|
|
235
|
-
class="tsd-kind-icon"
|
|
236
|
-
viewBox="0 0 24 24"
|
|
237
|
-
aria-label="Method"
|
|
238
|
-
>
|
|
239
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
240
|
-
><span>binary==</span></a
|
|
241
|
-
>
|
|
242
|
-
<a href="#binary-20" class="tsd-index-link"
|
|
243
|
-
><svg
|
|
244
|
-
class="tsd-kind-icon"
|
|
245
|
-
viewBox="0 0 24 24"
|
|
246
|
-
aria-label="Method"
|
|
247
|
-
>
|
|
248
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
249
|
-
><span>binary===</span></a
|
|
250
|
-
>
|
|
251
|
-
<a href="#binary-22" class="tsd-index-link"
|
|
252
|
-
><svg
|
|
253
|
-
class="tsd-kind-icon"
|
|
254
|
-
viewBox="0 0 24 24"
|
|
255
|
-
aria-label="Method"
|
|
256
|
-
>
|
|
257
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
258
|
-
><span>binary></span></a
|
|
259
|
-
>
|
|
260
|
-
<a href="#binary-24" class="tsd-index-link"
|
|
261
|
-
><svg
|
|
262
|
-
class="tsd-kind-icon"
|
|
263
|
-
viewBox="0 0 24 24"
|
|
264
|
-
aria-label="Method"
|
|
265
|
-
>
|
|
266
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
267
|
-
><span>binary>=</span></a
|
|
268
|
-
>
|
|
269
|
-
<a href="#binary-26" class="tsd-index-link"
|
|
270
|
-
><svg
|
|
271
|
-
class="tsd-kind-icon"
|
|
272
|
-
viewBox="0 0 24 24"
|
|
273
|
-
aria-label="Method"
|
|
274
|
-
>
|
|
275
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
276
|
-
><span>binary||</span></a
|
|
277
|
-
>
|
|
278
|
-
<a href="#compile" class="tsd-index-link"
|
|
279
|
-
><svg
|
|
280
|
-
class="tsd-kind-icon"
|
|
281
|
-
viewBox="0 0 24 24"
|
|
282
|
-
aria-label="Method"
|
|
283
|
-
>
|
|
284
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
285
|
-
><span>compile</span></a
|
|
286
|
-
>
|
|
287
|
-
<a href="#computedmember" class="tsd-index-link"
|
|
288
|
-
><svg
|
|
289
|
-
class="tsd-kind-icon"
|
|
290
|
-
viewBox="0 0 24 24"
|
|
291
|
-
aria-label="Method"
|
|
292
|
-
>
|
|
293
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
294
|
-
><span>computed<wbr />Member</span></a
|
|
295
|
-
>
|
|
296
|
-
<a href="#identifier" class="tsd-index-link"
|
|
297
|
-
><svg
|
|
298
|
-
class="tsd-kind-icon"
|
|
299
|
-
viewBox="0 0 24 24"
|
|
300
|
-
aria-label="Method"
|
|
301
|
-
>
|
|
302
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
303
|
-
><span>identifier</span></a
|
|
304
|
-
>
|
|
305
|
-
<a href="#noncomputedmember" class="tsd-index-link"
|
|
306
|
-
><svg
|
|
307
|
-
class="tsd-kind-icon"
|
|
308
|
-
viewBox="0 0 24 24"
|
|
309
|
-
aria-label="Method"
|
|
310
|
-
>
|
|
311
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
312
|
-
><span>non<wbr />Computed<wbr />Member</span></a
|
|
313
|
-
>
|
|
314
|
-
<a href="#recurse" class="tsd-index-link"
|
|
315
|
-
><svg
|
|
316
|
-
class="tsd-kind-icon"
|
|
317
|
-
viewBox="0 0 24 24"
|
|
318
|
-
aria-label="Method"
|
|
319
|
-
>
|
|
320
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
321
|
-
><span>recurse</span></a
|
|
322
|
-
>
|
|
323
|
-
<a href="#ternary" class="tsd-index-link"
|
|
324
|
-
><svg
|
|
325
|
-
class="tsd-kind-icon"
|
|
326
|
-
viewBox="0 0 24 24"
|
|
327
|
-
aria-label="Method"
|
|
328
|
-
>
|
|
329
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
330
|
-
><span>ternary?:</span></a
|
|
331
|
-
>
|
|
332
|
-
<a href="#unary-" class="tsd-index-link"
|
|
333
|
-
><svg
|
|
334
|
-
class="tsd-kind-icon"
|
|
335
|
-
viewBox="0 0 24 24"
|
|
336
|
-
aria-label="Method"
|
|
337
|
-
>
|
|
338
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
339
|
-
><span>unary-</span></a
|
|
340
|
-
>
|
|
341
|
-
<a href="#unary" class="tsd-index-link"
|
|
342
|
-
><svg
|
|
343
|
-
class="tsd-kind-icon"
|
|
344
|
-
viewBox="0 0 24 24"
|
|
345
|
-
aria-label="Method"
|
|
346
|
-
>
|
|
347
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
348
|
-
><span>unary!</span></a
|
|
349
|
-
>
|
|
350
|
-
<a href="#unary-2" class="tsd-index-link"
|
|
351
|
-
><svg
|
|
352
|
-
class="tsd-kind-icon"
|
|
353
|
-
viewBox="0 0 24 24"
|
|
354
|
-
aria-label="Method"
|
|
355
|
-
>
|
|
356
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
357
|
-
><span>unary+</span></a
|
|
358
|
-
>
|
|
359
|
-
<a href="#value" class="tsd-index-link"
|
|
360
|
-
><svg
|
|
361
|
-
class="tsd-kind-icon"
|
|
362
|
-
viewBox="0 0 24 24"
|
|
363
|
-
aria-label="Method"
|
|
364
|
-
>
|
|
365
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
366
|
-
><span>value</span></a
|
|
367
|
-
>
|
|
368
|
-
</div>
|
|
369
|
-
</section>
|
|
370
|
-
</div>
|
|
371
|
-
</details>
|
|
372
|
-
</section>
|
|
373
|
-
</section>
|
|
374
|
-
<details class="tsd-panel-group tsd-member-group tsd-accordion" open>
|
|
375
|
-
<summary
|
|
376
|
-
class="tsd-accordion-summary"
|
|
377
|
-
data-key="section-Constructors"
|
|
378
|
-
>
|
|
379
|
-
<svg
|
|
380
|
-
width="20"
|
|
381
|
-
height="20"
|
|
382
|
-
viewBox="0 0 24 24"
|
|
383
|
-
fill="none"
|
|
384
|
-
aria-hidden="true"
|
|
385
|
-
>
|
|
386
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
387
|
-
</svg>
|
|
388
|
-
<h2>Constructors</h2>
|
|
389
|
-
</summary>
|
|
390
|
-
<section>
|
|
391
|
-
<section class="tsd-panel tsd-member">
|
|
392
|
-
<h3 class="tsd-anchor-link" id="constructor">
|
|
393
|
-
<span>constructor</span
|
|
394
|
-
><a
|
|
395
|
-
href="#constructor"
|
|
396
|
-
aria-label="Permalink"
|
|
397
|
-
class="tsd-anchor-icon"
|
|
398
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
399
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
400
|
-
></a>
|
|
401
|
-
</h3>
|
|
402
|
-
<ul class="tsd-signatures">
|
|
403
|
-
<li class="">
|
|
404
|
-
<div
|
|
405
|
-
class="tsd-signature tsd-anchor-link"
|
|
406
|
-
id="constructorastinterpreter"
|
|
407
|
-
>
|
|
408
|
-
<span class="tsd-signature-keyword">new</span>
|
|
409
|
-
<span class="tsd-kind-constructor-signature"
|
|
410
|
-
>ASTInterpreter</span
|
|
411
|
-
><span class="tsd-signature-symbol">(</span
|
|
412
|
-
><span class="tsd-kind-parameter">$filter</span
|
|
413
|
-
><span class="tsd-signature-symbol">:</span>
|
|
414
|
-
<span class="tsd-signature-symbol">(</span
|
|
415
|
-
><span class="tsd-kind-parameter">arg0</span
|
|
416
|
-
><span class="tsd-signature-symbol">:</span>
|
|
417
|
-
<span class="tsd-signature-type">any</span
|
|
418
|
-
><span class="tsd-signature-symbol">)</span>
|
|
419
|
-
<span class="tsd-signature-symbol">=></span>
|
|
420
|
-
<span class="tsd-signature-type">any</span
|
|
421
|
-
><span class="tsd-signature-symbol">)</span
|
|
422
|
-
><span class="tsd-signature-symbol">:</span>
|
|
423
|
-
<a href="" class="tsd-signature-type tsd-kind-class"
|
|
424
|
-
>ASTInterpreter</a
|
|
425
|
-
><a
|
|
426
|
-
href="#constructorastinterpreter"
|
|
427
|
-
aria-label="Permalink"
|
|
428
|
-
class="tsd-anchor-icon"
|
|
429
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
430
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
431
|
-
></a>
|
|
432
|
-
</div>
|
|
433
|
-
<div class="tsd-description">
|
|
434
|
-
<div class="tsd-parameters">
|
|
435
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
436
|
-
<ul class="tsd-parameter-list">
|
|
437
|
-
<li>
|
|
438
|
-
<span
|
|
439
|
-
><span class="tsd-kind-parameter">$filter</span>:
|
|
440
|
-
<span class="tsd-signature-symbol">(</span
|
|
441
|
-
><span class="tsd-kind-parameter">arg0</span
|
|
442
|
-
><span class="tsd-signature-symbol">:</span>
|
|
443
|
-
<span class="tsd-signature-type">any</span
|
|
444
|
-
><span class="tsd-signature-symbol">)</span>
|
|
445
|
-
<span class="tsd-signature-symbol">=></span>
|
|
446
|
-
<span class="tsd-signature-type">any</span></span
|
|
447
|
-
>
|
|
448
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
449
|
-
</li>
|
|
450
|
-
</ul>
|
|
451
|
-
</div>
|
|
452
|
-
<h4 class="tsd-returns-title">
|
|
453
|
-
Returns
|
|
454
|
-
<a href="" class="tsd-signature-type tsd-kind-class"
|
|
455
|
-
>ASTInterpreter</a
|
|
456
|
-
>
|
|
457
|
-
</h4>
|
|
458
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
459
|
-
</div>
|
|
460
|
-
</li>
|
|
461
|
-
</ul>
|
|
462
|
-
</section>
|
|
463
|
-
</section>
|
|
464
|
-
</details>
|
|
465
|
-
<details class="tsd-panel-group tsd-member-group tsd-accordion" open>
|
|
466
|
-
<summary class="tsd-accordion-summary" data-key="section-Properties">
|
|
467
|
-
<svg
|
|
468
|
-
width="20"
|
|
469
|
-
height="20"
|
|
470
|
-
viewBox="0 0 24 24"
|
|
471
|
-
fill="none"
|
|
472
|
-
aria-hidden="true"
|
|
473
|
-
>
|
|
474
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
475
|
-
</svg>
|
|
476
|
-
<h2>Properties</h2>
|
|
477
|
-
</summary>
|
|
478
|
-
<section>
|
|
479
|
-
<section class="tsd-panel tsd-member">
|
|
480
|
-
<h3 class="tsd-anchor-link" id="filter">
|
|
481
|
-
<span>$filter</span
|
|
482
|
-
><a
|
|
483
|
-
href="#filter"
|
|
484
|
-
aria-label="Permalink"
|
|
485
|
-
class="tsd-anchor-icon"
|
|
486
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
487
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
488
|
-
></a>
|
|
489
|
-
</h3>
|
|
490
|
-
<div class="tsd-signature">
|
|
491
|
-
<span class="tsd-kind-property">$filter</span
|
|
492
|
-
><span class="tsd-signature-symbol">:</span>
|
|
493
|
-
<span class="tsd-signature-symbol">(</span
|
|
494
|
-
><span class="tsd-kind-parameter">arg0</span
|
|
495
|
-
><span class="tsd-signature-symbol">:</span>
|
|
496
|
-
<span class="tsd-signature-type">any</span
|
|
497
|
-
><span class="tsd-signature-symbol">)</span>
|
|
498
|
-
<span class="tsd-signature-symbol">=></span>
|
|
499
|
-
<span class="tsd-signature-type">any</span>
|
|
500
|
-
</div>
|
|
501
|
-
</section>
|
|
502
|
-
</section>
|
|
503
|
-
</details>
|
|
504
|
-
<details class="tsd-panel-group tsd-member-group tsd-accordion" open>
|
|
505
|
-
<summary class="tsd-accordion-summary" data-key="section-Methods">
|
|
506
|
-
<svg
|
|
507
|
-
width="20"
|
|
508
|
-
height="20"
|
|
509
|
-
viewBox="0 0 24 24"
|
|
510
|
-
fill="none"
|
|
511
|
-
aria-hidden="true"
|
|
512
|
-
>
|
|
513
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
514
|
-
</svg>
|
|
515
|
-
<h2>Methods</h2>
|
|
516
|
-
</summary>
|
|
517
|
-
<section>
|
|
518
|
-
<section class="tsd-panel tsd-member">
|
|
519
|
-
<h3 class="tsd-anchor-link" id="binary-">
|
|
520
|
-
<span>binary-</span
|
|
521
|
-
><a
|
|
522
|
-
href="#binary-"
|
|
523
|
-
aria-label="Permalink"
|
|
524
|
-
class="tsd-anchor-icon"
|
|
525
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
526
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
527
|
-
></a>
|
|
528
|
-
</h3>
|
|
529
|
-
<ul class="tsd-signatures">
|
|
530
|
-
<li class="">
|
|
531
|
-
<div class="tsd-signature tsd-anchor-link" id="binary--1">
|
|
532
|
-
<span class="tsd-kind-call-signature"
|
|
533
|
-
>"binary-"</span
|
|
534
|
-
><span class="tsd-signature-symbol">(</span
|
|
535
|
-
><span class="tsd-kind-parameter">left</span
|
|
536
|
-
><span class="tsd-signature-symbol">:</span>
|
|
537
|
-
<span class="tsd-signature-type">Function</span
|
|
538
|
-
><span class="tsd-signature-symbol">,</span>
|
|
539
|
-
<span class="tsd-kind-parameter">right</span
|
|
540
|
-
><span class="tsd-signature-symbol">:</span>
|
|
541
|
-
<span class="tsd-signature-type">Function</span
|
|
542
|
-
><span class="tsd-signature-symbol">,</span>
|
|
543
|
-
<span class="tsd-kind-parameter">context</span
|
|
544
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
545
|
-
<span class="tsd-signature-type">any</span
|
|
546
|
-
><span class="tsd-signature-symbol">)</span
|
|
547
|
-
><span class="tsd-signature-symbol">:</span>
|
|
548
|
-
<span class="tsd-signature-type">Function</span
|
|
549
|
-
><a
|
|
550
|
-
href="#binary--1"
|
|
551
|
-
aria-label="Permalink"
|
|
552
|
-
class="tsd-anchor-icon"
|
|
553
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
554
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
555
|
-
></a>
|
|
556
|
-
</div>
|
|
557
|
-
<div class="tsd-description">
|
|
558
|
-
<div class="tsd-comment tsd-typography">
|
|
559
|
-
<p>Binary minus operation.</p>
|
|
560
|
-
</div>
|
|
561
|
-
<div class="tsd-parameters">
|
|
562
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
563
|
-
<ul class="tsd-parameter-list">
|
|
564
|
-
<li>
|
|
565
|
-
<span
|
|
566
|
-
><span class="tsd-kind-parameter">left</span>:
|
|
567
|
-
<span class="tsd-signature-type"
|
|
568
|
-
>Function</span
|
|
569
|
-
></span
|
|
570
|
-
>
|
|
571
|
-
<div class="tsd-comment tsd-typography">
|
|
572
|
-
<p>The left operand function.</p>
|
|
573
|
-
</div>
|
|
574
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
575
|
-
</li>
|
|
576
|
-
<li>
|
|
577
|
-
<span
|
|
578
|
-
><span class="tsd-kind-parameter">right</span>:
|
|
579
|
-
<span class="tsd-signature-type"
|
|
580
|
-
>Function</span
|
|
581
|
-
></span
|
|
582
|
-
>
|
|
583
|
-
<div class="tsd-comment tsd-typography">
|
|
584
|
-
<p>The right operand function.</p>
|
|
585
|
-
</div>
|
|
586
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
587
|
-
</li>
|
|
588
|
-
<li>
|
|
589
|
-
<span
|
|
590
|
-
><code class="tsd-tag">Optional</code
|
|
591
|
-
><span class="tsd-kind-parameter">context</span>:
|
|
592
|
-
<span class="tsd-signature-type">any</span></span
|
|
593
|
-
>
|
|
594
|
-
<div class="tsd-comment tsd-typography">
|
|
595
|
-
<p>The context.</p>
|
|
596
|
-
</div>
|
|
597
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
598
|
-
</li>
|
|
599
|
-
</ul>
|
|
600
|
-
</div>
|
|
601
|
-
<h4 class="tsd-returns-title">
|
|
602
|
-
Returns <span class="tsd-signature-type">Function</span>
|
|
603
|
-
</h4>
|
|
604
|
-
<p>The binary minus function.</p>
|
|
605
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
606
|
-
</div>
|
|
607
|
-
</li>
|
|
608
|
-
</ul>
|
|
609
|
-
</section>
|
|
610
|
-
<section class="tsd-panel tsd-member">
|
|
611
|
-
<h3 class="tsd-anchor-link" id="binary">
|
|
612
|
-
<span>binary!=</span
|
|
613
|
-
><a
|
|
614
|
-
href="#binary"
|
|
615
|
-
aria-label="Permalink"
|
|
616
|
-
class="tsd-anchor-icon"
|
|
617
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
618
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
619
|
-
></a>
|
|
620
|
-
</h3>
|
|
621
|
-
<ul class="tsd-signatures">
|
|
622
|
-
<li class="">
|
|
623
|
-
<div class="tsd-signature tsd-anchor-link" id="binary-1">
|
|
624
|
-
<span class="tsd-kind-call-signature"
|
|
625
|
-
>"binary!="</span
|
|
626
|
-
><span class="tsd-signature-symbol">(</span
|
|
627
|
-
><span class="tsd-kind-parameter">left</span
|
|
628
|
-
><span class="tsd-signature-symbol">:</span>
|
|
629
|
-
<span class="tsd-signature-type">Function</span
|
|
630
|
-
><span class="tsd-signature-symbol">,</span>
|
|
631
|
-
<span class="tsd-kind-parameter">right</span
|
|
632
|
-
><span class="tsd-signature-symbol">:</span>
|
|
633
|
-
<span class="tsd-signature-type">Function</span
|
|
634
|
-
><span class="tsd-signature-symbol">,</span>
|
|
635
|
-
<span class="tsd-kind-parameter">context</span
|
|
636
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
637
|
-
<span class="tsd-signature-type">any</span
|
|
638
|
-
><span class="tsd-signature-symbol">)</span
|
|
639
|
-
><span class="tsd-signature-symbol">:</span>
|
|
640
|
-
<span class="tsd-signature-type">Function</span
|
|
641
|
-
><a
|
|
642
|
-
href="#binary-1"
|
|
643
|
-
aria-label="Permalink"
|
|
644
|
-
class="tsd-anchor-icon"
|
|
645
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
646
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
647
|
-
></a>
|
|
648
|
-
</div>
|
|
649
|
-
<div class="tsd-description">
|
|
650
|
-
<div class="tsd-comment tsd-typography">
|
|
651
|
-
<p>Binary inequality operation.</p>
|
|
652
|
-
</div>
|
|
653
|
-
<div class="tsd-parameters">
|
|
654
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
655
|
-
<ul class="tsd-parameter-list">
|
|
656
|
-
<li>
|
|
657
|
-
<span
|
|
658
|
-
><span class="tsd-kind-parameter">left</span>:
|
|
659
|
-
<span class="tsd-signature-type"
|
|
660
|
-
>Function</span
|
|
661
|
-
></span
|
|
662
|
-
>
|
|
663
|
-
<div class="tsd-comment tsd-typography">
|
|
664
|
-
<p>The left operand function.</p>
|
|
665
|
-
</div>
|
|
666
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
667
|
-
</li>
|
|
668
|
-
<li>
|
|
669
|
-
<span
|
|
670
|
-
><span class="tsd-kind-parameter">right</span>:
|
|
671
|
-
<span class="tsd-signature-type"
|
|
672
|
-
>Function</span
|
|
673
|
-
></span
|
|
674
|
-
>
|
|
675
|
-
<div class="tsd-comment tsd-typography">
|
|
676
|
-
<p>The right operand function.</p>
|
|
677
|
-
</div>
|
|
678
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
679
|
-
</li>
|
|
680
|
-
<li>
|
|
681
|
-
<span
|
|
682
|
-
><code class="tsd-tag">Optional</code
|
|
683
|
-
><span class="tsd-kind-parameter">context</span>:
|
|
684
|
-
<span class="tsd-signature-type">any</span></span
|
|
685
|
-
>
|
|
686
|
-
<div class="tsd-comment tsd-typography">
|
|
687
|
-
<p>The context.</p>
|
|
688
|
-
</div>
|
|
689
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
690
|
-
</li>
|
|
691
|
-
</ul>
|
|
692
|
-
</div>
|
|
693
|
-
<h4 class="tsd-returns-title">
|
|
694
|
-
Returns <span class="tsd-signature-type">Function</span>
|
|
695
|
-
</h4>
|
|
696
|
-
<p>The binary inequality function.</p>
|
|
697
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
698
|
-
</div>
|
|
699
|
-
</li>
|
|
700
|
-
</ul>
|
|
701
|
-
</section>
|
|
702
|
-
<section class="tsd-panel tsd-member">
|
|
703
|
-
<h3 class="tsd-anchor-link" id="binary-2">
|
|
704
|
-
<span>binary!==</span
|
|
705
|
-
><a
|
|
706
|
-
href="#binary-2"
|
|
707
|
-
aria-label="Permalink"
|
|
708
|
-
class="tsd-anchor-icon"
|
|
709
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
710
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
711
|
-
></a>
|
|
712
|
-
</h3>
|
|
713
|
-
<ul class="tsd-signatures">
|
|
714
|
-
<li class="">
|
|
715
|
-
<div class="tsd-signature tsd-anchor-link" id="binary-3">
|
|
716
|
-
<span class="tsd-kind-call-signature"
|
|
717
|
-
>"binary!=="</span
|
|
718
|
-
><span class="tsd-signature-symbol">(</span
|
|
719
|
-
><span class="tsd-kind-parameter">left</span
|
|
720
|
-
><span class="tsd-signature-symbol">:</span>
|
|
721
|
-
<span class="tsd-signature-type">Function</span
|
|
722
|
-
><span class="tsd-signature-symbol">,</span>
|
|
723
|
-
<span class="tsd-kind-parameter">right</span
|
|
724
|
-
><span class="tsd-signature-symbol">:</span>
|
|
725
|
-
<span class="tsd-signature-type">Function</span
|
|
726
|
-
><span class="tsd-signature-symbol">,</span>
|
|
727
|
-
<span class="tsd-kind-parameter">context</span
|
|
728
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
729
|
-
<span class="tsd-signature-type">any</span
|
|
730
|
-
><span class="tsd-signature-symbol">)</span
|
|
731
|
-
><span class="tsd-signature-symbol">:</span>
|
|
732
|
-
<span class="tsd-signature-type">Function</span
|
|
733
|
-
><a
|
|
734
|
-
href="#binary-3"
|
|
735
|
-
aria-label="Permalink"
|
|
736
|
-
class="tsd-anchor-icon"
|
|
737
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
738
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
739
|
-
></a>
|
|
740
|
-
</div>
|
|
741
|
-
<div class="tsd-description">
|
|
742
|
-
<div class="tsd-comment tsd-typography">
|
|
743
|
-
<p>Binary strict inequality operation.</p>
|
|
744
|
-
</div>
|
|
745
|
-
<div class="tsd-parameters">
|
|
746
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
747
|
-
<ul class="tsd-parameter-list">
|
|
748
|
-
<li>
|
|
749
|
-
<span
|
|
750
|
-
><span class="tsd-kind-parameter">left</span>:
|
|
751
|
-
<span class="tsd-signature-type"
|
|
752
|
-
>Function</span
|
|
753
|
-
></span
|
|
754
|
-
>
|
|
755
|
-
<div class="tsd-comment tsd-typography">
|
|
756
|
-
<p>The left operand function.</p>
|
|
757
|
-
</div>
|
|
758
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
759
|
-
</li>
|
|
760
|
-
<li>
|
|
761
|
-
<span
|
|
762
|
-
><span class="tsd-kind-parameter">right</span>:
|
|
763
|
-
<span class="tsd-signature-type"
|
|
764
|
-
>Function</span
|
|
765
|
-
></span
|
|
766
|
-
>
|
|
767
|
-
<div class="tsd-comment tsd-typography">
|
|
768
|
-
<p>The right operand function.</p>
|
|
769
|
-
</div>
|
|
770
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
771
|
-
</li>
|
|
772
|
-
<li>
|
|
773
|
-
<span
|
|
774
|
-
><code class="tsd-tag">Optional</code
|
|
775
|
-
><span class="tsd-kind-parameter">context</span>:
|
|
776
|
-
<span class="tsd-signature-type">any</span></span
|
|
777
|
-
>
|
|
778
|
-
<div class="tsd-comment tsd-typography">
|
|
779
|
-
<p>The context.</p>
|
|
780
|
-
</div>
|
|
781
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
782
|
-
</li>
|
|
783
|
-
</ul>
|
|
784
|
-
</div>
|
|
785
|
-
<h4 class="tsd-returns-title">
|
|
786
|
-
Returns <span class="tsd-signature-type">Function</span>
|
|
787
|
-
</h4>
|
|
788
|
-
<p>The binary strict inequality function.</p>
|
|
789
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
790
|
-
</div>
|
|
791
|
-
</li>
|
|
792
|
-
</ul>
|
|
793
|
-
</section>
|
|
794
|
-
<section class="tsd-panel tsd-member">
|
|
795
|
-
<h3 class="tsd-anchor-link" id="binary-4">
|
|
796
|
-
<span>binary*</span
|
|
797
|
-
><a
|
|
798
|
-
href="#binary-4"
|
|
799
|
-
aria-label="Permalink"
|
|
800
|
-
class="tsd-anchor-icon"
|
|
801
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
802
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
803
|
-
></a>
|
|
804
|
-
</h3>
|
|
805
|
-
<ul class="tsd-signatures">
|
|
806
|
-
<li class="">
|
|
807
|
-
<div class="tsd-signature tsd-anchor-link" id="binary-5">
|
|
808
|
-
<span class="tsd-kind-call-signature"
|
|
809
|
-
>"binary*"</span
|
|
810
|
-
><span class="tsd-signature-symbol">(</span
|
|
811
|
-
><span class="tsd-kind-parameter">left</span
|
|
812
|
-
><span class="tsd-signature-symbol">:</span>
|
|
813
|
-
<span class="tsd-signature-type">Function</span
|
|
814
|
-
><span class="tsd-signature-symbol">,</span>
|
|
815
|
-
<span class="tsd-kind-parameter">right</span
|
|
816
|
-
><span class="tsd-signature-symbol">:</span>
|
|
817
|
-
<span class="tsd-signature-type">Function</span
|
|
818
|
-
><span class="tsd-signature-symbol">,</span>
|
|
819
|
-
<span class="tsd-kind-parameter">context</span
|
|
820
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
821
|
-
<span class="tsd-signature-type">any</span
|
|
822
|
-
><span class="tsd-signature-symbol">)</span
|
|
823
|
-
><span class="tsd-signature-symbol">:</span>
|
|
824
|
-
<span class="tsd-signature-type">Function</span
|
|
825
|
-
><a
|
|
826
|
-
href="#binary-5"
|
|
827
|
-
aria-label="Permalink"
|
|
828
|
-
class="tsd-anchor-icon"
|
|
829
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
830
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
831
|
-
></a>
|
|
832
|
-
</div>
|
|
833
|
-
<div class="tsd-description">
|
|
834
|
-
<div class="tsd-comment tsd-typography">
|
|
835
|
-
<p>Binary multiplication operation.</p>
|
|
836
|
-
</div>
|
|
837
|
-
<div class="tsd-parameters">
|
|
838
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
839
|
-
<ul class="tsd-parameter-list">
|
|
840
|
-
<li>
|
|
841
|
-
<span
|
|
842
|
-
><span class="tsd-kind-parameter">left</span>:
|
|
843
|
-
<span class="tsd-signature-type"
|
|
844
|
-
>Function</span
|
|
845
|
-
></span
|
|
846
|
-
>
|
|
847
|
-
<div class="tsd-comment tsd-typography">
|
|
848
|
-
<p>The left operand function.</p>
|
|
849
|
-
</div>
|
|
850
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
851
|
-
</li>
|
|
852
|
-
<li>
|
|
853
|
-
<span
|
|
854
|
-
><span class="tsd-kind-parameter">right</span>:
|
|
855
|
-
<span class="tsd-signature-type"
|
|
856
|
-
>Function</span
|
|
857
|
-
></span
|
|
858
|
-
>
|
|
859
|
-
<div class="tsd-comment tsd-typography">
|
|
860
|
-
<p>The right operand function.</p>
|
|
861
|
-
</div>
|
|
862
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
863
|
-
</li>
|
|
864
|
-
<li>
|
|
865
|
-
<span
|
|
866
|
-
><code class="tsd-tag">Optional</code
|
|
867
|
-
><span class="tsd-kind-parameter">context</span>:
|
|
868
|
-
<span class="tsd-signature-type">any</span></span
|
|
869
|
-
>
|
|
870
|
-
<div class="tsd-comment tsd-typography">
|
|
871
|
-
<p>The context.</p>
|
|
872
|
-
</div>
|
|
873
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
874
|
-
</li>
|
|
875
|
-
</ul>
|
|
876
|
-
</div>
|
|
877
|
-
<h4 class="tsd-returns-title">
|
|
878
|
-
Returns <span class="tsd-signature-type">Function</span>
|
|
879
|
-
</h4>
|
|
880
|
-
<p>The binary multiplication function.</p>
|
|
881
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
882
|
-
</div>
|
|
883
|
-
</li>
|
|
884
|
-
</ul>
|
|
885
|
-
</section>
|
|
886
|
-
<section class="tsd-panel tsd-member">
|
|
887
|
-
<h3 class="tsd-anchor-link" id="binary-6">
|
|
888
|
-
<span>binary/</span
|
|
889
|
-
><a
|
|
890
|
-
href="#binary-6"
|
|
891
|
-
aria-label="Permalink"
|
|
892
|
-
class="tsd-anchor-icon"
|
|
893
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
894
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
895
|
-
></a>
|
|
896
|
-
</h3>
|
|
897
|
-
<ul class="tsd-signatures">
|
|
898
|
-
<li class="">
|
|
899
|
-
<div class="tsd-signature tsd-anchor-link" id="binary-7">
|
|
900
|
-
<span class="tsd-kind-call-signature"
|
|
901
|
-
>"binary/"</span
|
|
902
|
-
><span class="tsd-signature-symbol">(</span><br /> <span
|
|
903
|
-
class="tsd-kind-parameter"
|
|
904
|
-
>left</span
|
|
905
|
-
><span class="tsd-signature-symbol">:</span>
|
|
906
|
-
<span class="tsd-signature-type">any</span
|
|
907
|
-
><span class="tsd-signature-symbol">,</span><br /> <span
|
|
908
|
-
class="tsd-kind-parameter"
|
|
909
|
-
>right</span
|
|
910
|
-
><span class="tsd-signature-symbol">:</span>
|
|
911
|
-
<span class="tsd-signature-type">any</span
|
|
912
|
-
><span class="tsd-signature-symbol">,</span><br /> <span
|
|
913
|
-
class="tsd-kind-parameter"
|
|
914
|
-
>context</span
|
|
915
|
-
><span class="tsd-signature-symbol">:</span>
|
|
916
|
-
<span class="tsd-signature-type">any</span
|
|
917
|
-
><span class="tsd-signature-symbol">,</span><br /><span
|
|
918
|
-
class="tsd-signature-symbol"
|
|
919
|
-
>)</span
|
|
920
|
-
><span class="tsd-signature-symbol">:</span>
|
|
921
|
-
<span class="tsd-signature-symbol">(</span
|
|
922
|
-
><span class="tsd-kind-parameter">scope</span
|
|
923
|
-
><span class="tsd-signature-symbol">:</span>
|
|
924
|
-
<span class="tsd-signature-type">any</span
|
|
925
|
-
><span class="tsd-signature-symbol">,</span>
|
|
926
|
-
<span class="tsd-kind-parameter">locals</span
|
|
927
|
-
><span class="tsd-signature-symbol">:</span>
|
|
928
|
-
<span class="tsd-signature-type">any</span
|
|
929
|
-
><span class="tsd-signature-symbol">,</span>
|
|
930
|
-
<span class="tsd-kind-parameter">assign</span
|
|
931
|
-
><span class="tsd-signature-symbol">:</span>
|
|
932
|
-
<span class="tsd-signature-type">any</span
|
|
933
|
-
><span class="tsd-signature-symbol">)</span>
|
|
934
|
-
<span class="tsd-signature-symbol">=></span>
|
|
935
|
-
<span class="tsd-signature-type">number</span>
|
|
936
|
-
<span class="tsd-signature-symbol">|</span>
|
|
937
|
-
<span class="tsd-signature-symbol">{</span>
|
|
938
|
-
<span class="tsd-kind-property">value</span
|
|
939
|
-
><span class="tsd-signature-symbol">:</span>
|
|
940
|
-
<span class="tsd-signature-type">number</span>
|
|
941
|
-
<span class="tsd-signature-symbol">}</span
|
|
942
|
-
><a
|
|
943
|
-
href="#binary-7"
|
|
944
|
-
aria-label="Permalink"
|
|
945
|
-
class="tsd-anchor-icon"
|
|
946
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
947
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
948
|
-
></a>
|
|
949
|
-
</div>
|
|
950
|
-
<div class="tsd-description">
|
|
951
|
-
<div class="tsd-parameters">
|
|
952
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
953
|
-
<ul class="tsd-parameter-list">
|
|
954
|
-
<li>
|
|
955
|
-
<span
|
|
956
|
-
><span class="tsd-kind-parameter">left</span>:
|
|
957
|
-
<span class="tsd-signature-type">any</span></span
|
|
958
|
-
>
|
|
959
|
-
</li>
|
|
960
|
-
<li>
|
|
961
|
-
<span
|
|
962
|
-
><span class="tsd-kind-parameter">right</span>:
|
|
963
|
-
<span class="tsd-signature-type">any</span></span
|
|
964
|
-
>
|
|
965
|
-
</li>
|
|
966
|
-
<li>
|
|
967
|
-
<span
|
|
968
|
-
><span class="tsd-kind-parameter">context</span>:
|
|
969
|
-
<span class="tsd-signature-type">any</span></span
|
|
970
|
-
>
|
|
971
|
-
</li>
|
|
972
|
-
</ul>
|
|
973
|
-
</div>
|
|
974
|
-
<h4 class="tsd-returns-title">
|
|
975
|
-
Returns <span class="tsd-signature-symbol">(</span
|
|
976
|
-
><span class="tsd-kind-parameter">scope</span
|
|
977
|
-
><span class="tsd-signature-symbol">:</span>
|
|
978
|
-
<span class="tsd-signature-type">any</span
|
|
979
|
-
><span class="tsd-signature-symbol">,</span>
|
|
980
|
-
<span class="tsd-kind-parameter">locals</span
|
|
981
|
-
><span class="tsd-signature-symbol">:</span>
|
|
982
|
-
<span class="tsd-signature-type">any</span
|
|
983
|
-
><span class="tsd-signature-symbol">,</span>
|
|
984
|
-
<span class="tsd-kind-parameter">assign</span
|
|
985
|
-
><span class="tsd-signature-symbol">:</span>
|
|
986
|
-
<span class="tsd-signature-type">any</span
|
|
987
|
-
><span class="tsd-signature-symbol">)</span>
|
|
988
|
-
<span class="tsd-signature-symbol">=></span>
|
|
989
|
-
<span class="tsd-signature-type">number</span>
|
|
990
|
-
<span class="tsd-signature-symbol">|</span>
|
|
991
|
-
<span class="tsd-signature-symbol">{</span>
|
|
992
|
-
<span class="tsd-kind-property">value</span
|
|
993
|
-
><span class="tsd-signature-symbol">:</span>
|
|
994
|
-
<span class="tsd-signature-type">number</span>
|
|
995
|
-
<span class="tsd-signature-symbol">}</span>
|
|
996
|
-
</h4>
|
|
997
|
-
</div>
|
|
998
|
-
</li>
|
|
999
|
-
</ul>
|
|
1000
|
-
</section>
|
|
1001
|
-
<section class="tsd-panel tsd-member">
|
|
1002
|
-
<h3 class="tsd-anchor-link" id="binary-8">
|
|
1003
|
-
<span>binary&&</span
|
|
1004
|
-
><a
|
|
1005
|
-
href="#binary-8"
|
|
1006
|
-
aria-label="Permalink"
|
|
1007
|
-
class="tsd-anchor-icon"
|
|
1008
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1009
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1010
|
-
></a>
|
|
1011
|
-
</h3>
|
|
1012
|
-
<ul class="tsd-signatures">
|
|
1013
|
-
<li class="">
|
|
1014
|
-
<div class="tsd-signature tsd-anchor-link" id="binary-9">
|
|
1015
|
-
<span class="tsd-kind-call-signature"
|
|
1016
|
-
>"binary&&"</span
|
|
1017
|
-
><span class="tsd-signature-symbol">(</span
|
|
1018
|
-
><span class="tsd-kind-parameter">left</span
|
|
1019
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1020
|
-
<span class="tsd-signature-type">Function</span
|
|
1021
|
-
><span class="tsd-signature-symbol">,</span>
|
|
1022
|
-
<span class="tsd-kind-parameter">right</span
|
|
1023
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1024
|
-
<span class="tsd-signature-type">Function</span
|
|
1025
|
-
><span class="tsd-signature-symbol">,</span>
|
|
1026
|
-
<span class="tsd-kind-parameter">context</span
|
|
1027
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
1028
|
-
<span class="tsd-signature-type">any</span
|
|
1029
|
-
><span class="tsd-signature-symbol">)</span
|
|
1030
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1031
|
-
<span class="tsd-signature-type">Function</span
|
|
1032
|
-
><a
|
|
1033
|
-
href="#binary-9"
|
|
1034
|
-
aria-label="Permalink"
|
|
1035
|
-
class="tsd-anchor-icon"
|
|
1036
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1037
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1038
|
-
></a>
|
|
1039
|
-
</div>
|
|
1040
|
-
<div class="tsd-description">
|
|
1041
|
-
<div class="tsd-comment tsd-typography">
|
|
1042
|
-
<p>Binary logical AND operation.</p>
|
|
1043
|
-
</div>
|
|
1044
|
-
<div class="tsd-parameters">
|
|
1045
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
1046
|
-
<ul class="tsd-parameter-list">
|
|
1047
|
-
<li>
|
|
1048
|
-
<span
|
|
1049
|
-
><span class="tsd-kind-parameter">left</span>:
|
|
1050
|
-
<span class="tsd-signature-type"
|
|
1051
|
-
>Function</span
|
|
1052
|
-
></span
|
|
1053
|
-
>
|
|
1054
|
-
<div class="tsd-comment tsd-typography">
|
|
1055
|
-
<p>The left operand function.</p>
|
|
1056
|
-
</div>
|
|
1057
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1058
|
-
</li>
|
|
1059
|
-
<li>
|
|
1060
|
-
<span
|
|
1061
|
-
><span class="tsd-kind-parameter">right</span>:
|
|
1062
|
-
<span class="tsd-signature-type"
|
|
1063
|
-
>Function</span
|
|
1064
|
-
></span
|
|
1065
|
-
>
|
|
1066
|
-
<div class="tsd-comment tsd-typography">
|
|
1067
|
-
<p>The right operand function.</p>
|
|
1068
|
-
</div>
|
|
1069
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1070
|
-
</li>
|
|
1071
|
-
<li>
|
|
1072
|
-
<span
|
|
1073
|
-
><code class="tsd-tag">Optional</code
|
|
1074
|
-
><span class="tsd-kind-parameter">context</span>:
|
|
1075
|
-
<span class="tsd-signature-type">any</span></span
|
|
1076
|
-
>
|
|
1077
|
-
<div class="tsd-comment tsd-typography">
|
|
1078
|
-
<p>The context.</p>
|
|
1079
|
-
</div>
|
|
1080
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1081
|
-
</li>
|
|
1082
|
-
</ul>
|
|
1083
|
-
</div>
|
|
1084
|
-
<h4 class="tsd-returns-title">
|
|
1085
|
-
Returns <span class="tsd-signature-type">Function</span>
|
|
1086
|
-
</h4>
|
|
1087
|
-
<p>The binary logical AND function.</p>
|
|
1088
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1089
|
-
</div>
|
|
1090
|
-
</li>
|
|
1091
|
-
</ul>
|
|
1092
|
-
</section>
|
|
1093
|
-
<section class="tsd-panel tsd-member">
|
|
1094
|
-
<h3 class="tsd-anchor-link" id="binary-10">
|
|
1095
|
-
<span>binary%</span
|
|
1096
|
-
><a
|
|
1097
|
-
href="#binary-10"
|
|
1098
|
-
aria-label="Permalink"
|
|
1099
|
-
class="tsd-anchor-icon"
|
|
1100
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1101
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1102
|
-
></a>
|
|
1103
|
-
</h3>
|
|
1104
|
-
<ul class="tsd-signatures">
|
|
1105
|
-
<li class="">
|
|
1106
|
-
<div class="tsd-signature tsd-anchor-link" id="binary-11">
|
|
1107
|
-
<span class="tsd-kind-call-signature"
|
|
1108
|
-
>"binary%"</span
|
|
1109
|
-
><span class="tsd-signature-symbol">(</span
|
|
1110
|
-
><span class="tsd-kind-parameter">left</span
|
|
1111
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1112
|
-
<span class="tsd-signature-type">Function</span
|
|
1113
|
-
><span class="tsd-signature-symbol">,</span>
|
|
1114
|
-
<span class="tsd-kind-parameter">right</span
|
|
1115
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1116
|
-
<span class="tsd-signature-type">Function</span
|
|
1117
|
-
><span class="tsd-signature-symbol">,</span>
|
|
1118
|
-
<span class="tsd-kind-parameter">context</span
|
|
1119
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
1120
|
-
<span class="tsd-signature-type">any</span
|
|
1121
|
-
><span class="tsd-signature-symbol">)</span
|
|
1122
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1123
|
-
<span class="tsd-signature-type">Function</span
|
|
1124
|
-
><a
|
|
1125
|
-
href="#binary-11"
|
|
1126
|
-
aria-label="Permalink"
|
|
1127
|
-
class="tsd-anchor-icon"
|
|
1128
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1129
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1130
|
-
></a>
|
|
1131
|
-
</div>
|
|
1132
|
-
<div class="tsd-description">
|
|
1133
|
-
<div class="tsd-comment tsd-typography">
|
|
1134
|
-
<p>Binary division operation.</p>
|
|
1135
|
-
</div>
|
|
1136
|
-
<div class="tsd-parameters">
|
|
1137
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
1138
|
-
<ul class="tsd-parameter-list">
|
|
1139
|
-
<li>
|
|
1140
|
-
<span
|
|
1141
|
-
><span class="tsd-kind-parameter">left</span>:
|
|
1142
|
-
<span class="tsd-signature-type"
|
|
1143
|
-
>Function</span
|
|
1144
|
-
></span
|
|
1145
|
-
>
|
|
1146
|
-
<div class="tsd-comment tsd-typography">
|
|
1147
|
-
<p>The left operand function.</p>
|
|
1148
|
-
</div>
|
|
1149
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1150
|
-
</li>
|
|
1151
|
-
<li>
|
|
1152
|
-
<span
|
|
1153
|
-
><span class="tsd-kind-parameter">right</span>:
|
|
1154
|
-
<span class="tsd-signature-type"
|
|
1155
|
-
>Function</span
|
|
1156
|
-
></span
|
|
1157
|
-
>
|
|
1158
|
-
<div class="tsd-comment tsd-typography">
|
|
1159
|
-
<p>The right operand function.</p>
|
|
1160
|
-
</div>
|
|
1161
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1162
|
-
</li>
|
|
1163
|
-
<li>
|
|
1164
|
-
<span
|
|
1165
|
-
><code class="tsd-tag">Optional</code
|
|
1166
|
-
><span class="tsd-kind-parameter">context</span>:
|
|
1167
|
-
<span class="tsd-signature-type">any</span></span
|
|
1168
|
-
>
|
|
1169
|
-
<div class="tsd-comment tsd-typography">
|
|
1170
|
-
<p>The context.</p>
|
|
1171
|
-
</div>
|
|
1172
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1173
|
-
</li>
|
|
1174
|
-
</ul>
|
|
1175
|
-
</div>
|
|
1176
|
-
<h4 class="tsd-returns-title">
|
|
1177
|
-
Returns <span class="tsd-signature-type">Function</span>
|
|
1178
|
-
</h4>
|
|
1179
|
-
<p>The binary division function.</p>
|
|
1180
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1181
|
-
</div>
|
|
1182
|
-
</li>
|
|
1183
|
-
</ul>
|
|
1184
|
-
</section>
|
|
1185
|
-
<section class="tsd-panel tsd-member">
|
|
1186
|
-
<h3 class="tsd-anchor-link" id="binary-12">
|
|
1187
|
-
<span>binary+</span
|
|
1188
|
-
><a
|
|
1189
|
-
href="#binary-12"
|
|
1190
|
-
aria-label="Permalink"
|
|
1191
|
-
class="tsd-anchor-icon"
|
|
1192
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1193
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1194
|
-
></a>
|
|
1195
|
-
</h3>
|
|
1196
|
-
<ul class="tsd-signatures">
|
|
1197
|
-
<li class="">
|
|
1198
|
-
<div class="tsd-signature tsd-anchor-link" id="binary-13">
|
|
1199
|
-
<span class="tsd-kind-call-signature"
|
|
1200
|
-
>"binary+"</span
|
|
1201
|
-
><span class="tsd-signature-symbol">(</span
|
|
1202
|
-
><span class="tsd-kind-parameter">left</span
|
|
1203
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1204
|
-
<span class="tsd-signature-type">Function</span
|
|
1205
|
-
><span class="tsd-signature-symbol">,</span>
|
|
1206
|
-
<span class="tsd-kind-parameter">right</span
|
|
1207
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1208
|
-
<span class="tsd-signature-type">Function</span
|
|
1209
|
-
><span class="tsd-signature-symbol">,</span>
|
|
1210
|
-
<span class="tsd-kind-parameter">context</span
|
|
1211
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
1212
|
-
<span class="tsd-signature-type">any</span
|
|
1213
|
-
><span class="tsd-signature-symbol">)</span
|
|
1214
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1215
|
-
<span class="tsd-signature-type">Function</span
|
|
1216
|
-
><a
|
|
1217
|
-
href="#binary-13"
|
|
1218
|
-
aria-label="Permalink"
|
|
1219
|
-
class="tsd-anchor-icon"
|
|
1220
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1221
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1222
|
-
></a>
|
|
1223
|
-
</div>
|
|
1224
|
-
<div class="tsd-description">
|
|
1225
|
-
<div class="tsd-comment tsd-typography">
|
|
1226
|
-
<p>Binary plus operation.</p>
|
|
1227
|
-
</div>
|
|
1228
|
-
<div class="tsd-parameters">
|
|
1229
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
1230
|
-
<ul class="tsd-parameter-list">
|
|
1231
|
-
<li>
|
|
1232
|
-
<span
|
|
1233
|
-
><span class="tsd-kind-parameter">left</span>:
|
|
1234
|
-
<span class="tsd-signature-type"
|
|
1235
|
-
>Function</span
|
|
1236
|
-
></span
|
|
1237
|
-
>
|
|
1238
|
-
<div class="tsd-comment tsd-typography">
|
|
1239
|
-
<p>The left operand function.</p>
|
|
1240
|
-
</div>
|
|
1241
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1242
|
-
</li>
|
|
1243
|
-
<li>
|
|
1244
|
-
<span
|
|
1245
|
-
><span class="tsd-kind-parameter">right</span>:
|
|
1246
|
-
<span class="tsd-signature-type"
|
|
1247
|
-
>Function</span
|
|
1248
|
-
></span
|
|
1249
|
-
>
|
|
1250
|
-
<div class="tsd-comment tsd-typography">
|
|
1251
|
-
<p>The right operand function.</p>
|
|
1252
|
-
</div>
|
|
1253
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1254
|
-
</li>
|
|
1255
|
-
<li>
|
|
1256
|
-
<span
|
|
1257
|
-
><code class="tsd-tag">Optional</code
|
|
1258
|
-
><span class="tsd-kind-parameter">context</span>:
|
|
1259
|
-
<span class="tsd-signature-type">any</span></span
|
|
1260
|
-
>
|
|
1261
|
-
<div class="tsd-comment tsd-typography">
|
|
1262
|
-
<p>The context.</p>
|
|
1263
|
-
</div>
|
|
1264
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1265
|
-
</li>
|
|
1266
|
-
</ul>
|
|
1267
|
-
</div>
|
|
1268
|
-
<h4 class="tsd-returns-title">
|
|
1269
|
-
Returns <span class="tsd-signature-type">Function</span>
|
|
1270
|
-
</h4>
|
|
1271
|
-
<p>The binary plus function.</p>
|
|
1272
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1273
|
-
</div>
|
|
1274
|
-
</li>
|
|
1275
|
-
</ul>
|
|
1276
|
-
</section>
|
|
1277
|
-
<section class="tsd-panel tsd-member">
|
|
1278
|
-
<h3 class="tsd-anchor-link" id="binary-14">
|
|
1279
|
-
<span>binary<</span
|
|
1280
|
-
><a
|
|
1281
|
-
href="#binary-14"
|
|
1282
|
-
aria-label="Permalink"
|
|
1283
|
-
class="tsd-anchor-icon"
|
|
1284
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1285
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1286
|
-
></a>
|
|
1287
|
-
</h3>
|
|
1288
|
-
<ul class="tsd-signatures">
|
|
1289
|
-
<li class="">
|
|
1290
|
-
<div class="tsd-signature tsd-anchor-link" id="binary-15">
|
|
1291
|
-
<span class="tsd-kind-call-signature"
|
|
1292
|
-
>"binary<"</span
|
|
1293
|
-
><span class="tsd-signature-symbol">(</span
|
|
1294
|
-
><span class="tsd-kind-parameter">left</span
|
|
1295
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1296
|
-
<span class="tsd-signature-type">Function</span
|
|
1297
|
-
><span class="tsd-signature-symbol">,</span>
|
|
1298
|
-
<span class="tsd-kind-parameter">right</span
|
|
1299
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1300
|
-
<span class="tsd-signature-type">Function</span
|
|
1301
|
-
><span class="tsd-signature-symbol">,</span>
|
|
1302
|
-
<span class="tsd-kind-parameter">context</span
|
|
1303
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
1304
|
-
<span class="tsd-signature-type">any</span
|
|
1305
|
-
><span class="tsd-signature-symbol">)</span
|
|
1306
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1307
|
-
<span class="tsd-signature-type">Function</span
|
|
1308
|
-
><a
|
|
1309
|
-
href="#binary-15"
|
|
1310
|
-
aria-label="Permalink"
|
|
1311
|
-
class="tsd-anchor-icon"
|
|
1312
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1313
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1314
|
-
></a>
|
|
1315
|
-
</div>
|
|
1316
|
-
<div class="tsd-description">
|
|
1317
|
-
<div class="tsd-comment tsd-typography">
|
|
1318
|
-
<p>Binary less-than operation.</p>
|
|
1319
|
-
</div>
|
|
1320
|
-
<div class="tsd-parameters">
|
|
1321
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
1322
|
-
<ul class="tsd-parameter-list">
|
|
1323
|
-
<li>
|
|
1324
|
-
<span
|
|
1325
|
-
><span class="tsd-kind-parameter">left</span>:
|
|
1326
|
-
<span class="tsd-signature-type"
|
|
1327
|
-
>Function</span
|
|
1328
|
-
></span
|
|
1329
|
-
>
|
|
1330
|
-
<div class="tsd-comment tsd-typography">
|
|
1331
|
-
<p>The left operand function.</p>
|
|
1332
|
-
</div>
|
|
1333
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1334
|
-
</li>
|
|
1335
|
-
<li>
|
|
1336
|
-
<span
|
|
1337
|
-
><span class="tsd-kind-parameter">right</span>:
|
|
1338
|
-
<span class="tsd-signature-type"
|
|
1339
|
-
>Function</span
|
|
1340
|
-
></span
|
|
1341
|
-
>
|
|
1342
|
-
<div class="tsd-comment tsd-typography">
|
|
1343
|
-
<p>The right operand function.</p>
|
|
1344
|
-
</div>
|
|
1345
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1346
|
-
</li>
|
|
1347
|
-
<li>
|
|
1348
|
-
<span
|
|
1349
|
-
><code class="tsd-tag">Optional</code
|
|
1350
|
-
><span class="tsd-kind-parameter">context</span>:
|
|
1351
|
-
<span class="tsd-signature-type">any</span></span
|
|
1352
|
-
>
|
|
1353
|
-
<div class="tsd-comment tsd-typography">
|
|
1354
|
-
<p>The context.</p>
|
|
1355
|
-
</div>
|
|
1356
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1357
|
-
</li>
|
|
1358
|
-
</ul>
|
|
1359
|
-
</div>
|
|
1360
|
-
<h4 class="tsd-returns-title">
|
|
1361
|
-
Returns <span class="tsd-signature-type">Function</span>
|
|
1362
|
-
</h4>
|
|
1363
|
-
<p>The binary less-than function.</p>
|
|
1364
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1365
|
-
</div>
|
|
1366
|
-
</li>
|
|
1367
|
-
</ul>
|
|
1368
|
-
</section>
|
|
1369
|
-
<section class="tsd-panel tsd-member">
|
|
1370
|
-
<h3 class="tsd-anchor-link" id="binary-16">
|
|
1371
|
-
<span>binary<=</span
|
|
1372
|
-
><a
|
|
1373
|
-
href="#binary-16"
|
|
1374
|
-
aria-label="Permalink"
|
|
1375
|
-
class="tsd-anchor-icon"
|
|
1376
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1377
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1378
|
-
></a>
|
|
1379
|
-
</h3>
|
|
1380
|
-
<ul class="tsd-signatures">
|
|
1381
|
-
<li class="">
|
|
1382
|
-
<div class="tsd-signature tsd-anchor-link" id="binary-17">
|
|
1383
|
-
<span class="tsd-kind-call-signature"
|
|
1384
|
-
>"binary<="</span
|
|
1385
|
-
><span class="tsd-signature-symbol">(</span
|
|
1386
|
-
><span class="tsd-kind-parameter">left</span
|
|
1387
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1388
|
-
<span class="tsd-signature-type">Function</span
|
|
1389
|
-
><span class="tsd-signature-symbol">,</span>
|
|
1390
|
-
<span class="tsd-kind-parameter">right</span
|
|
1391
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1392
|
-
<span class="tsd-signature-type">Function</span
|
|
1393
|
-
><span class="tsd-signature-symbol">,</span>
|
|
1394
|
-
<span class="tsd-kind-parameter">context</span
|
|
1395
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
1396
|
-
<span class="tsd-signature-type">any</span
|
|
1397
|
-
><span class="tsd-signature-symbol">)</span
|
|
1398
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1399
|
-
<span class="tsd-signature-type">Function</span
|
|
1400
|
-
><a
|
|
1401
|
-
href="#binary-17"
|
|
1402
|
-
aria-label="Permalink"
|
|
1403
|
-
class="tsd-anchor-icon"
|
|
1404
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1405
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1406
|
-
></a>
|
|
1407
|
-
</div>
|
|
1408
|
-
<div class="tsd-description">
|
|
1409
|
-
<div class="tsd-comment tsd-typography">
|
|
1410
|
-
<p>Binary less-than-or-equal-to operation.</p>
|
|
1411
|
-
</div>
|
|
1412
|
-
<div class="tsd-parameters">
|
|
1413
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
1414
|
-
<ul class="tsd-parameter-list">
|
|
1415
|
-
<li>
|
|
1416
|
-
<span
|
|
1417
|
-
><span class="tsd-kind-parameter">left</span>:
|
|
1418
|
-
<span class="tsd-signature-type"
|
|
1419
|
-
>Function</span
|
|
1420
|
-
></span
|
|
1421
|
-
>
|
|
1422
|
-
<div class="tsd-comment tsd-typography">
|
|
1423
|
-
<p>The left operand function.</p>
|
|
1424
|
-
</div>
|
|
1425
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1426
|
-
</li>
|
|
1427
|
-
<li>
|
|
1428
|
-
<span
|
|
1429
|
-
><span class="tsd-kind-parameter">right</span>:
|
|
1430
|
-
<span class="tsd-signature-type"
|
|
1431
|
-
>Function</span
|
|
1432
|
-
></span
|
|
1433
|
-
>
|
|
1434
|
-
<div class="tsd-comment tsd-typography">
|
|
1435
|
-
<p>The right operand function.</p>
|
|
1436
|
-
</div>
|
|
1437
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1438
|
-
</li>
|
|
1439
|
-
<li>
|
|
1440
|
-
<span
|
|
1441
|
-
><code class="tsd-tag">Optional</code
|
|
1442
|
-
><span class="tsd-kind-parameter">context</span>:
|
|
1443
|
-
<span class="tsd-signature-type">any</span></span
|
|
1444
|
-
>
|
|
1445
|
-
<div class="tsd-comment tsd-typography">
|
|
1446
|
-
<p>The context.</p>
|
|
1447
|
-
</div>
|
|
1448
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1449
|
-
</li>
|
|
1450
|
-
</ul>
|
|
1451
|
-
</div>
|
|
1452
|
-
<h4 class="tsd-returns-title">
|
|
1453
|
-
Returns <span class="tsd-signature-type">Function</span>
|
|
1454
|
-
</h4>
|
|
1455
|
-
<p>The binary less-than-or-equal-to function.</p>
|
|
1456
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1457
|
-
</div>
|
|
1458
|
-
</li>
|
|
1459
|
-
</ul>
|
|
1460
|
-
</section>
|
|
1461
|
-
<section class="tsd-panel tsd-member">
|
|
1462
|
-
<h3 class="tsd-anchor-link" id="binary-18">
|
|
1463
|
-
<span>binary==</span
|
|
1464
|
-
><a
|
|
1465
|
-
href="#binary-18"
|
|
1466
|
-
aria-label="Permalink"
|
|
1467
|
-
class="tsd-anchor-icon"
|
|
1468
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1469
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1470
|
-
></a>
|
|
1471
|
-
</h3>
|
|
1472
|
-
<ul class="tsd-signatures">
|
|
1473
|
-
<li class="">
|
|
1474
|
-
<div class="tsd-signature tsd-anchor-link" id="binary-19">
|
|
1475
|
-
<span class="tsd-kind-call-signature"
|
|
1476
|
-
>"binary=="</span
|
|
1477
|
-
><span class="tsd-signature-symbol">(</span
|
|
1478
|
-
><span class="tsd-kind-parameter">left</span
|
|
1479
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1480
|
-
<span class="tsd-signature-type">Function</span
|
|
1481
|
-
><span class="tsd-signature-symbol">,</span>
|
|
1482
|
-
<span class="tsd-kind-parameter">right</span
|
|
1483
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1484
|
-
<span class="tsd-signature-type">Function</span
|
|
1485
|
-
><span class="tsd-signature-symbol">,</span>
|
|
1486
|
-
<span class="tsd-kind-parameter">context</span
|
|
1487
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
1488
|
-
<span class="tsd-signature-type">any</span
|
|
1489
|
-
><span class="tsd-signature-symbol">)</span
|
|
1490
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1491
|
-
<span class="tsd-signature-type">Function</span
|
|
1492
|
-
><a
|
|
1493
|
-
href="#binary-19"
|
|
1494
|
-
aria-label="Permalink"
|
|
1495
|
-
class="tsd-anchor-icon"
|
|
1496
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1497
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1498
|
-
></a>
|
|
1499
|
-
</div>
|
|
1500
|
-
<div class="tsd-description">
|
|
1501
|
-
<div class="tsd-comment tsd-typography">
|
|
1502
|
-
<p>Binary equality operation.</p>
|
|
1503
|
-
</div>
|
|
1504
|
-
<div class="tsd-parameters">
|
|
1505
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
1506
|
-
<ul class="tsd-parameter-list">
|
|
1507
|
-
<li>
|
|
1508
|
-
<span
|
|
1509
|
-
><span class="tsd-kind-parameter">left</span>:
|
|
1510
|
-
<span class="tsd-signature-type"
|
|
1511
|
-
>Function</span
|
|
1512
|
-
></span
|
|
1513
|
-
>
|
|
1514
|
-
<div class="tsd-comment tsd-typography">
|
|
1515
|
-
<p>The left operand function.</p>
|
|
1516
|
-
</div>
|
|
1517
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1518
|
-
</li>
|
|
1519
|
-
<li>
|
|
1520
|
-
<span
|
|
1521
|
-
><span class="tsd-kind-parameter">right</span>:
|
|
1522
|
-
<span class="tsd-signature-type"
|
|
1523
|
-
>Function</span
|
|
1524
|
-
></span
|
|
1525
|
-
>
|
|
1526
|
-
<div class="tsd-comment tsd-typography">
|
|
1527
|
-
<p>The right operand function.</p>
|
|
1528
|
-
</div>
|
|
1529
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1530
|
-
</li>
|
|
1531
|
-
<li>
|
|
1532
|
-
<span
|
|
1533
|
-
><code class="tsd-tag">Optional</code
|
|
1534
|
-
><span class="tsd-kind-parameter">context</span>:
|
|
1535
|
-
<span class="tsd-signature-type">any</span></span
|
|
1536
|
-
>
|
|
1537
|
-
<div class="tsd-comment tsd-typography">
|
|
1538
|
-
<p>The context.</p>
|
|
1539
|
-
</div>
|
|
1540
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1541
|
-
</li>
|
|
1542
|
-
</ul>
|
|
1543
|
-
</div>
|
|
1544
|
-
<h4 class="tsd-returns-title">
|
|
1545
|
-
Returns <span class="tsd-signature-type">Function</span>
|
|
1546
|
-
</h4>
|
|
1547
|
-
<p>The binary equality function.</p>
|
|
1548
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1549
|
-
</div>
|
|
1550
|
-
</li>
|
|
1551
|
-
</ul>
|
|
1552
|
-
</section>
|
|
1553
|
-
<section class="tsd-panel tsd-member">
|
|
1554
|
-
<h3 class="tsd-anchor-link" id="binary-20">
|
|
1555
|
-
<span>binary===</span
|
|
1556
|
-
><a
|
|
1557
|
-
href="#binary-20"
|
|
1558
|
-
aria-label="Permalink"
|
|
1559
|
-
class="tsd-anchor-icon"
|
|
1560
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1561
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1562
|
-
></a>
|
|
1563
|
-
</h3>
|
|
1564
|
-
<ul class="tsd-signatures">
|
|
1565
|
-
<li class="">
|
|
1566
|
-
<div class="tsd-signature tsd-anchor-link" id="binary-21">
|
|
1567
|
-
<span class="tsd-kind-call-signature"
|
|
1568
|
-
>"binary==="</span
|
|
1569
|
-
><span class="tsd-signature-symbol">(</span
|
|
1570
|
-
><span class="tsd-kind-parameter">left</span
|
|
1571
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1572
|
-
<span class="tsd-signature-type">Function</span
|
|
1573
|
-
><span class="tsd-signature-symbol">,</span>
|
|
1574
|
-
<span class="tsd-kind-parameter">right</span
|
|
1575
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1576
|
-
<span class="tsd-signature-type">Function</span
|
|
1577
|
-
><span class="tsd-signature-symbol">,</span>
|
|
1578
|
-
<span class="tsd-kind-parameter">context</span
|
|
1579
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
1580
|
-
<span class="tsd-signature-type">any</span
|
|
1581
|
-
><span class="tsd-signature-symbol">)</span
|
|
1582
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1583
|
-
<span class="tsd-signature-type">Function</span
|
|
1584
|
-
><a
|
|
1585
|
-
href="#binary-21"
|
|
1586
|
-
aria-label="Permalink"
|
|
1587
|
-
class="tsd-anchor-icon"
|
|
1588
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1589
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1590
|
-
></a>
|
|
1591
|
-
</div>
|
|
1592
|
-
<div class="tsd-description">
|
|
1593
|
-
<div class="tsd-comment tsd-typography">
|
|
1594
|
-
<p>Binary strict equality operation.</p>
|
|
1595
|
-
</div>
|
|
1596
|
-
<div class="tsd-parameters">
|
|
1597
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
1598
|
-
<ul class="tsd-parameter-list">
|
|
1599
|
-
<li>
|
|
1600
|
-
<span
|
|
1601
|
-
><span class="tsd-kind-parameter">left</span>:
|
|
1602
|
-
<span class="tsd-signature-type"
|
|
1603
|
-
>Function</span
|
|
1604
|
-
></span
|
|
1605
|
-
>
|
|
1606
|
-
<div class="tsd-comment tsd-typography">
|
|
1607
|
-
<p>The left operand function.</p>
|
|
1608
|
-
</div>
|
|
1609
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1610
|
-
</li>
|
|
1611
|
-
<li>
|
|
1612
|
-
<span
|
|
1613
|
-
><span class="tsd-kind-parameter">right</span>:
|
|
1614
|
-
<span class="tsd-signature-type"
|
|
1615
|
-
>Function</span
|
|
1616
|
-
></span
|
|
1617
|
-
>
|
|
1618
|
-
<div class="tsd-comment tsd-typography">
|
|
1619
|
-
<p>The right operand function.</p>
|
|
1620
|
-
</div>
|
|
1621
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1622
|
-
</li>
|
|
1623
|
-
<li>
|
|
1624
|
-
<span
|
|
1625
|
-
><code class="tsd-tag">Optional</code
|
|
1626
|
-
><span class="tsd-kind-parameter">context</span>:
|
|
1627
|
-
<span class="tsd-signature-type">any</span></span
|
|
1628
|
-
>
|
|
1629
|
-
<div class="tsd-comment tsd-typography">
|
|
1630
|
-
<p>The context.</p>
|
|
1631
|
-
</div>
|
|
1632
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1633
|
-
</li>
|
|
1634
|
-
</ul>
|
|
1635
|
-
</div>
|
|
1636
|
-
<h4 class="tsd-returns-title">
|
|
1637
|
-
Returns <span class="tsd-signature-type">Function</span>
|
|
1638
|
-
</h4>
|
|
1639
|
-
<p>The binary strict equality function.</p>
|
|
1640
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1641
|
-
</div>
|
|
1642
|
-
</li>
|
|
1643
|
-
</ul>
|
|
1644
|
-
</section>
|
|
1645
|
-
<section class="tsd-panel tsd-member">
|
|
1646
|
-
<h3 class="tsd-anchor-link" id="binary-22">
|
|
1647
|
-
<span>binary></span
|
|
1648
|
-
><a
|
|
1649
|
-
href="#binary-22"
|
|
1650
|
-
aria-label="Permalink"
|
|
1651
|
-
class="tsd-anchor-icon"
|
|
1652
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1653
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1654
|
-
></a>
|
|
1655
|
-
</h3>
|
|
1656
|
-
<ul class="tsd-signatures">
|
|
1657
|
-
<li class="">
|
|
1658
|
-
<div class="tsd-signature tsd-anchor-link" id="binary-23">
|
|
1659
|
-
<span class="tsd-kind-call-signature"
|
|
1660
|
-
>"binary>"</span
|
|
1661
|
-
><span class="tsd-signature-symbol">(</span
|
|
1662
|
-
><span class="tsd-kind-parameter">left</span
|
|
1663
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1664
|
-
<span class="tsd-signature-type">Function</span
|
|
1665
|
-
><span class="tsd-signature-symbol">,</span>
|
|
1666
|
-
<span class="tsd-kind-parameter">right</span
|
|
1667
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1668
|
-
<span class="tsd-signature-type">Function</span
|
|
1669
|
-
><span class="tsd-signature-symbol">,</span>
|
|
1670
|
-
<span class="tsd-kind-parameter">context</span
|
|
1671
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
1672
|
-
<span class="tsd-signature-type">any</span
|
|
1673
|
-
><span class="tsd-signature-symbol">)</span
|
|
1674
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1675
|
-
<span class="tsd-signature-type">Function</span
|
|
1676
|
-
><a
|
|
1677
|
-
href="#binary-23"
|
|
1678
|
-
aria-label="Permalink"
|
|
1679
|
-
class="tsd-anchor-icon"
|
|
1680
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1681
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1682
|
-
></a>
|
|
1683
|
-
</div>
|
|
1684
|
-
<div class="tsd-description">
|
|
1685
|
-
<div class="tsd-comment tsd-typography">
|
|
1686
|
-
<p>Binary greater-than operation.</p>
|
|
1687
|
-
</div>
|
|
1688
|
-
<div class="tsd-parameters">
|
|
1689
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
1690
|
-
<ul class="tsd-parameter-list">
|
|
1691
|
-
<li>
|
|
1692
|
-
<span
|
|
1693
|
-
><span class="tsd-kind-parameter">left</span>:
|
|
1694
|
-
<span class="tsd-signature-type"
|
|
1695
|
-
>Function</span
|
|
1696
|
-
></span
|
|
1697
|
-
>
|
|
1698
|
-
<div class="tsd-comment tsd-typography">
|
|
1699
|
-
<p>The left operand function.</p>
|
|
1700
|
-
</div>
|
|
1701
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1702
|
-
</li>
|
|
1703
|
-
<li>
|
|
1704
|
-
<span
|
|
1705
|
-
><span class="tsd-kind-parameter">right</span>:
|
|
1706
|
-
<span class="tsd-signature-type"
|
|
1707
|
-
>Function</span
|
|
1708
|
-
></span
|
|
1709
|
-
>
|
|
1710
|
-
<div class="tsd-comment tsd-typography">
|
|
1711
|
-
<p>The right operand function.</p>
|
|
1712
|
-
</div>
|
|
1713
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1714
|
-
</li>
|
|
1715
|
-
<li>
|
|
1716
|
-
<span
|
|
1717
|
-
><code class="tsd-tag">Optional</code
|
|
1718
|
-
><span class="tsd-kind-parameter">context</span>:
|
|
1719
|
-
<span class="tsd-signature-type">any</span></span
|
|
1720
|
-
>
|
|
1721
|
-
<div class="tsd-comment tsd-typography">
|
|
1722
|
-
<p>The context.</p>
|
|
1723
|
-
</div>
|
|
1724
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1725
|
-
</li>
|
|
1726
|
-
</ul>
|
|
1727
|
-
</div>
|
|
1728
|
-
<h4 class="tsd-returns-title">
|
|
1729
|
-
Returns <span class="tsd-signature-type">Function</span>
|
|
1730
|
-
</h4>
|
|
1731
|
-
<p>The binary greater-than function.</p>
|
|
1732
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1733
|
-
</div>
|
|
1734
|
-
</li>
|
|
1735
|
-
</ul>
|
|
1736
|
-
</section>
|
|
1737
|
-
<section class="tsd-panel tsd-member">
|
|
1738
|
-
<h3 class="tsd-anchor-link" id="binary-24">
|
|
1739
|
-
<span>binary>=</span
|
|
1740
|
-
><a
|
|
1741
|
-
href="#binary-24"
|
|
1742
|
-
aria-label="Permalink"
|
|
1743
|
-
class="tsd-anchor-icon"
|
|
1744
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1745
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1746
|
-
></a>
|
|
1747
|
-
</h3>
|
|
1748
|
-
<ul class="tsd-signatures">
|
|
1749
|
-
<li class="">
|
|
1750
|
-
<div class="tsd-signature tsd-anchor-link" id="binary-25">
|
|
1751
|
-
<span class="tsd-kind-call-signature"
|
|
1752
|
-
>"binary>="</span
|
|
1753
|
-
><span class="tsd-signature-symbol">(</span
|
|
1754
|
-
><span class="tsd-kind-parameter">left</span
|
|
1755
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1756
|
-
<span class="tsd-signature-type">Function</span
|
|
1757
|
-
><span class="tsd-signature-symbol">,</span>
|
|
1758
|
-
<span class="tsd-kind-parameter">right</span
|
|
1759
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1760
|
-
<span class="tsd-signature-type">Function</span
|
|
1761
|
-
><span class="tsd-signature-symbol">,</span>
|
|
1762
|
-
<span class="tsd-kind-parameter">context</span
|
|
1763
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
1764
|
-
<span class="tsd-signature-type">any</span
|
|
1765
|
-
><span class="tsd-signature-symbol">)</span
|
|
1766
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1767
|
-
<span class="tsd-signature-type">Function</span
|
|
1768
|
-
><a
|
|
1769
|
-
href="#binary-25"
|
|
1770
|
-
aria-label="Permalink"
|
|
1771
|
-
class="tsd-anchor-icon"
|
|
1772
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1773
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1774
|
-
></a>
|
|
1775
|
-
</div>
|
|
1776
|
-
<div class="tsd-description">
|
|
1777
|
-
<div class="tsd-comment tsd-typography">
|
|
1778
|
-
<p>Binary greater-than-or-equal-to operation.</p>
|
|
1779
|
-
</div>
|
|
1780
|
-
<div class="tsd-parameters">
|
|
1781
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
1782
|
-
<ul class="tsd-parameter-list">
|
|
1783
|
-
<li>
|
|
1784
|
-
<span
|
|
1785
|
-
><span class="tsd-kind-parameter">left</span>:
|
|
1786
|
-
<span class="tsd-signature-type"
|
|
1787
|
-
>Function</span
|
|
1788
|
-
></span
|
|
1789
|
-
>
|
|
1790
|
-
<div class="tsd-comment tsd-typography">
|
|
1791
|
-
<p>The left operand function.</p>
|
|
1792
|
-
</div>
|
|
1793
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1794
|
-
</li>
|
|
1795
|
-
<li>
|
|
1796
|
-
<span
|
|
1797
|
-
><span class="tsd-kind-parameter">right</span>:
|
|
1798
|
-
<span class="tsd-signature-type"
|
|
1799
|
-
>Function</span
|
|
1800
|
-
></span
|
|
1801
|
-
>
|
|
1802
|
-
<div class="tsd-comment tsd-typography">
|
|
1803
|
-
<p>The right operand function.</p>
|
|
1804
|
-
</div>
|
|
1805
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1806
|
-
</li>
|
|
1807
|
-
<li>
|
|
1808
|
-
<span
|
|
1809
|
-
><code class="tsd-tag">Optional</code
|
|
1810
|
-
><span class="tsd-kind-parameter">context</span>:
|
|
1811
|
-
<span class="tsd-signature-type">any</span></span
|
|
1812
|
-
>
|
|
1813
|
-
<div class="tsd-comment tsd-typography">
|
|
1814
|
-
<p>The context.</p>
|
|
1815
|
-
</div>
|
|
1816
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1817
|
-
</li>
|
|
1818
|
-
</ul>
|
|
1819
|
-
</div>
|
|
1820
|
-
<h4 class="tsd-returns-title">
|
|
1821
|
-
Returns <span class="tsd-signature-type">Function</span>
|
|
1822
|
-
</h4>
|
|
1823
|
-
<p>The binary greater-than-or-equal-to function.</p>
|
|
1824
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1825
|
-
</div>
|
|
1826
|
-
</li>
|
|
1827
|
-
</ul>
|
|
1828
|
-
</section>
|
|
1829
|
-
<section class="tsd-panel tsd-member">
|
|
1830
|
-
<h3 class="tsd-anchor-link" id="binary-26">
|
|
1831
|
-
<span>binary||</span
|
|
1832
|
-
><a
|
|
1833
|
-
href="#binary-26"
|
|
1834
|
-
aria-label="Permalink"
|
|
1835
|
-
class="tsd-anchor-icon"
|
|
1836
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1837
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1838
|
-
></a>
|
|
1839
|
-
</h3>
|
|
1840
|
-
<ul class="tsd-signatures">
|
|
1841
|
-
<li class="">
|
|
1842
|
-
<div class="tsd-signature tsd-anchor-link" id="binary-27">
|
|
1843
|
-
<span class="tsd-kind-call-signature"
|
|
1844
|
-
>"binary||"</span
|
|
1845
|
-
><span class="tsd-signature-symbol">(</span
|
|
1846
|
-
><span class="tsd-kind-parameter">left</span
|
|
1847
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1848
|
-
<span class="tsd-signature-type">Function</span
|
|
1849
|
-
><span class="tsd-signature-symbol">,</span>
|
|
1850
|
-
<span class="tsd-kind-parameter">right</span
|
|
1851
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1852
|
-
<span class="tsd-signature-type">Function</span
|
|
1853
|
-
><span class="tsd-signature-symbol">,</span>
|
|
1854
|
-
<span class="tsd-kind-parameter">context</span
|
|
1855
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
1856
|
-
<span class="tsd-signature-type">any</span
|
|
1857
|
-
><span class="tsd-signature-symbol">)</span
|
|
1858
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1859
|
-
<span class="tsd-signature-type">Function</span
|
|
1860
|
-
><a
|
|
1861
|
-
href="#binary-27"
|
|
1862
|
-
aria-label="Permalink"
|
|
1863
|
-
class="tsd-anchor-icon"
|
|
1864
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1865
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1866
|
-
></a>
|
|
1867
|
-
</div>
|
|
1868
|
-
<div class="tsd-description">
|
|
1869
|
-
<div class="tsd-comment tsd-typography">
|
|
1870
|
-
<p>Binary logical OR operation.</p>
|
|
1871
|
-
</div>
|
|
1872
|
-
<div class="tsd-parameters">
|
|
1873
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
1874
|
-
<ul class="tsd-parameter-list">
|
|
1875
|
-
<li>
|
|
1876
|
-
<span
|
|
1877
|
-
><span class="tsd-kind-parameter">left</span>:
|
|
1878
|
-
<span class="tsd-signature-type"
|
|
1879
|
-
>Function</span
|
|
1880
|
-
></span
|
|
1881
|
-
>
|
|
1882
|
-
<div class="tsd-comment tsd-typography">
|
|
1883
|
-
<p>The left operand function.</p>
|
|
1884
|
-
</div>
|
|
1885
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1886
|
-
</li>
|
|
1887
|
-
<li>
|
|
1888
|
-
<span
|
|
1889
|
-
><span class="tsd-kind-parameter">right</span>:
|
|
1890
|
-
<span class="tsd-signature-type"
|
|
1891
|
-
>Function</span
|
|
1892
|
-
></span
|
|
1893
|
-
>
|
|
1894
|
-
<div class="tsd-comment tsd-typography">
|
|
1895
|
-
<p>The right operand function.</p>
|
|
1896
|
-
</div>
|
|
1897
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1898
|
-
</li>
|
|
1899
|
-
<li>
|
|
1900
|
-
<span
|
|
1901
|
-
><code class="tsd-tag">Optional</code
|
|
1902
|
-
><span class="tsd-kind-parameter">context</span>:
|
|
1903
|
-
<span class="tsd-signature-type">any</span></span
|
|
1904
|
-
>
|
|
1905
|
-
<div class="tsd-comment tsd-typography">
|
|
1906
|
-
<p>The context.</p>
|
|
1907
|
-
</div>
|
|
1908
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1909
|
-
</li>
|
|
1910
|
-
</ul>
|
|
1911
|
-
</div>
|
|
1912
|
-
<h4 class="tsd-returns-title">
|
|
1913
|
-
Returns <span class="tsd-signature-type">Function</span>
|
|
1914
|
-
</h4>
|
|
1915
|
-
<p>The binary logical OR function.</p>
|
|
1916
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1917
|
-
</div>
|
|
1918
|
-
</li>
|
|
1919
|
-
</ul>
|
|
1920
|
-
</section>
|
|
1921
|
-
<section class="tsd-panel tsd-member">
|
|
1922
|
-
<h3 class="tsd-anchor-link" id="compile">
|
|
1923
|
-
<span>compile</span
|
|
1924
|
-
><a
|
|
1925
|
-
href="#compile"
|
|
1926
|
-
aria-label="Permalink"
|
|
1927
|
-
class="tsd-anchor-icon"
|
|
1928
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1929
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1930
|
-
></a>
|
|
1931
|
-
</h3>
|
|
1932
|
-
<ul class="tsd-signatures">
|
|
1933
|
-
<li class="">
|
|
1934
|
-
<div class="tsd-signature tsd-anchor-link" id="compile-1">
|
|
1935
|
-
<span class="tsd-kind-call-signature">compile</span
|
|
1936
|
-
><span class="tsd-signature-symbol">(</span
|
|
1937
|
-
><span class="tsd-kind-parameter">ast</span
|
|
1938
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1939
|
-
<a
|
|
1940
|
-
href="../types/core_parse_ast_ast-node.ASTNode.html"
|
|
1941
|
-
class="tsd-signature-type tsd-kind-type-alias"
|
|
1942
|
-
>ASTNode</a
|
|
1943
|
-
><span class="tsd-signature-symbol">)</span
|
|
1944
|
-
><span class="tsd-signature-symbol">:</span>
|
|
1945
|
-
<a
|
|
1946
|
-
href="../types/core_parse_interface.CompiledExpression.html"
|
|
1947
|
-
class="tsd-signature-type tsd-kind-type-alias"
|
|
1948
|
-
>CompiledExpression</a
|
|
1949
|
-
><a
|
|
1950
|
-
href="#compile-1"
|
|
1951
|
-
aria-label="Permalink"
|
|
1952
|
-
class="tsd-anchor-icon"
|
|
1953
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
1954
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
1955
|
-
></a>
|
|
1956
|
-
</div>
|
|
1957
|
-
<div class="tsd-description">
|
|
1958
|
-
<div class="tsd-comment tsd-typography">
|
|
1959
|
-
<p>Compiles the AST into a function.</p>
|
|
1960
|
-
</div>
|
|
1961
|
-
<div class="tsd-parameters">
|
|
1962
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
1963
|
-
<ul class="tsd-parameter-list">
|
|
1964
|
-
<li>
|
|
1965
|
-
<span
|
|
1966
|
-
><span class="tsd-kind-parameter">ast</span>:
|
|
1967
|
-
<a
|
|
1968
|
-
href="../types/core_parse_ast_ast-node.ASTNode.html"
|
|
1969
|
-
class="tsd-signature-type tsd-kind-type-alias"
|
|
1970
|
-
>ASTNode</a
|
|
1971
|
-
></span
|
|
1972
|
-
>
|
|
1973
|
-
<div class="tsd-comment tsd-typography">
|
|
1974
|
-
<p>The AST to compile.</p>
|
|
1975
|
-
</div>
|
|
1976
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1977
|
-
</li>
|
|
1978
|
-
</ul>
|
|
1979
|
-
</div>
|
|
1980
|
-
<h4 class="tsd-returns-title">
|
|
1981
|
-
Returns
|
|
1982
|
-
<a
|
|
1983
|
-
href="../types/core_parse_interface.CompiledExpression.html"
|
|
1984
|
-
class="tsd-signature-type tsd-kind-type-alias"
|
|
1985
|
-
>CompiledExpression</a
|
|
1986
|
-
>
|
|
1987
|
-
</h4>
|
|
1988
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
1989
|
-
</div>
|
|
1990
|
-
</li>
|
|
1991
|
-
</ul>
|
|
1992
|
-
</section>
|
|
1993
|
-
<section class="tsd-panel tsd-member">
|
|
1994
|
-
<h3 class="tsd-anchor-link" id="computedmember">
|
|
1995
|
-
<span>computed<wbr />Member</span
|
|
1996
|
-
><a
|
|
1997
|
-
href="#computedmember"
|
|
1998
|
-
aria-label="Permalink"
|
|
1999
|
-
class="tsd-anchor-icon"
|
|
2000
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2001
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2002
|
-
></a>
|
|
2003
|
-
</h3>
|
|
2004
|
-
<ul class="tsd-signatures">
|
|
2005
|
-
<li class="">
|
|
2006
|
-
<div
|
|
2007
|
-
class="tsd-signature tsd-anchor-link"
|
|
2008
|
-
id="computedmember-1"
|
|
2009
|
-
>
|
|
2010
|
-
<span class="tsd-kind-call-signature">computedMember</span
|
|
2011
|
-
><span class="tsd-signature-symbol">(</span><br /> <span
|
|
2012
|
-
class="tsd-kind-parameter"
|
|
2013
|
-
>left</span
|
|
2014
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2015
|
-
<span class="tsd-signature-type">Function</span
|
|
2016
|
-
><span class="tsd-signature-symbol">,</span><br /> <span
|
|
2017
|
-
class="tsd-kind-parameter"
|
|
2018
|
-
>right</span
|
|
2019
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2020
|
-
<span class="tsd-signature-type">Function</span
|
|
2021
|
-
><span class="tsd-signature-symbol">,</span><br /> <span
|
|
2022
|
-
class="tsd-kind-parameter"
|
|
2023
|
-
>context</span
|
|
2024
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
2025
|
-
<span class="tsd-signature-type">any</span
|
|
2026
|
-
><span class="tsd-signature-symbol">,</span><br /> <span
|
|
2027
|
-
class="tsd-kind-parameter"
|
|
2028
|
-
>create</span
|
|
2029
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
2030
|
-
<span class="tsd-signature-type">boolean</span>
|
|
2031
|
-
<span class="tsd-signature-symbol">|</span>
|
|
2032
|
-
<span class="tsd-signature-type">1</span
|
|
2033
|
-
><span class="tsd-signature-symbol">,</span><br /><span
|
|
2034
|
-
class="tsd-signature-symbol"
|
|
2035
|
-
>)</span
|
|
2036
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2037
|
-
<span class="tsd-signature-type">Function</span
|
|
2038
|
-
><a
|
|
2039
|
-
href="#computedmember-1"
|
|
2040
|
-
aria-label="Permalink"
|
|
2041
|
-
class="tsd-anchor-icon"
|
|
2042
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2043
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2044
|
-
></a>
|
|
2045
|
-
</div>
|
|
2046
|
-
<div class="tsd-description">
|
|
2047
|
-
<div class="tsd-comment tsd-typography">
|
|
2048
|
-
<p>Returns the value of a computed member expression.</p>
|
|
2049
|
-
</div>
|
|
2050
|
-
<div class="tsd-parameters">
|
|
2051
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
2052
|
-
<ul class="tsd-parameter-list">
|
|
2053
|
-
<li>
|
|
2054
|
-
<span
|
|
2055
|
-
><span class="tsd-kind-parameter">left</span>:
|
|
2056
|
-
<span class="tsd-signature-type"
|
|
2057
|
-
>Function</span
|
|
2058
|
-
></span
|
|
2059
|
-
>
|
|
2060
|
-
<div class="tsd-comment tsd-typography">
|
|
2061
|
-
<p>The left operand function.</p>
|
|
2062
|
-
</div>
|
|
2063
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2064
|
-
</li>
|
|
2065
|
-
<li>
|
|
2066
|
-
<span
|
|
2067
|
-
><span class="tsd-kind-parameter">right</span>:
|
|
2068
|
-
<span class="tsd-signature-type"
|
|
2069
|
-
>Function</span
|
|
2070
|
-
></span
|
|
2071
|
-
>
|
|
2072
|
-
<div class="tsd-comment tsd-typography">
|
|
2073
|
-
<p>The right operand function.</p>
|
|
2074
|
-
</div>
|
|
2075
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2076
|
-
</li>
|
|
2077
|
-
<li>
|
|
2078
|
-
<span
|
|
2079
|
-
><code class="tsd-tag">Optional</code
|
|
2080
|
-
><span class="tsd-kind-parameter">context</span>:
|
|
2081
|
-
<span class="tsd-signature-type">any</span></span
|
|
2082
|
-
>
|
|
2083
|
-
<div class="tsd-comment tsd-typography">
|
|
2084
|
-
<p>The context.</p>
|
|
2085
|
-
</div>
|
|
2086
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2087
|
-
</li>
|
|
2088
|
-
<li>
|
|
2089
|
-
<span
|
|
2090
|
-
><code class="tsd-tag">Optional</code
|
|
2091
|
-
><span class="tsd-kind-parameter">create</span>:
|
|
2092
|
-
<span class="tsd-signature-type">boolean</span>
|
|
2093
|
-
<span class="tsd-signature-symbol">|</span>
|
|
2094
|
-
<span class="tsd-signature-type">1</span></span
|
|
2095
|
-
>
|
|
2096
|
-
<div class="tsd-comment tsd-typography">
|
|
2097
|
-
<p>
|
|
2098
|
-
Whether to create the member if it does not exist.
|
|
2099
|
-
</p>
|
|
2100
|
-
</div>
|
|
2101
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2102
|
-
</li>
|
|
2103
|
-
</ul>
|
|
2104
|
-
</div>
|
|
2105
|
-
<h4 class="tsd-returns-title">
|
|
2106
|
-
Returns <span class="tsd-signature-type">Function</span>
|
|
2107
|
-
</h4>
|
|
2108
|
-
<p>The function returning the computed member value.</p>
|
|
2109
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2110
|
-
</div>
|
|
2111
|
-
</li>
|
|
2112
|
-
</ul>
|
|
2113
|
-
</section>
|
|
2114
|
-
<section class="tsd-panel tsd-member">
|
|
2115
|
-
<h3 class="tsd-anchor-link" id="identifier">
|
|
2116
|
-
<span>identifier</span
|
|
2117
|
-
><a
|
|
2118
|
-
href="#identifier"
|
|
2119
|
-
aria-label="Permalink"
|
|
2120
|
-
class="tsd-anchor-icon"
|
|
2121
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2122
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2123
|
-
></a>
|
|
2124
|
-
</h3>
|
|
2125
|
-
<ul class="tsd-signatures">
|
|
2126
|
-
<li class="">
|
|
2127
|
-
<div class="tsd-signature tsd-anchor-link" id="identifier-1">
|
|
2128
|
-
<span class="tsd-kind-call-signature">identifier</span
|
|
2129
|
-
><span class="tsd-signature-symbol">(</span><br /> <span
|
|
2130
|
-
class="tsd-kind-parameter"
|
|
2131
|
-
>name</span
|
|
2132
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2133
|
-
<span class="tsd-signature-type">string</span
|
|
2134
|
-
><span class="tsd-signature-symbol">,</span><br /> <span
|
|
2135
|
-
class="tsd-kind-parameter"
|
|
2136
|
-
>context</span
|
|
2137
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
2138
|
-
<span class="tsd-signature-type">any</span
|
|
2139
|
-
><span class="tsd-signature-symbol">,</span><br /> <span
|
|
2140
|
-
class="tsd-kind-parameter"
|
|
2141
|
-
>create</span
|
|
2142
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
2143
|
-
<span class="tsd-signature-type">boolean</span>
|
|
2144
|
-
<span class="tsd-signature-symbol">|</span>
|
|
2145
|
-
<span class="tsd-signature-type">1</span
|
|
2146
|
-
><span class="tsd-signature-symbol">,</span><br /><span
|
|
2147
|
-
class="tsd-signature-symbol"
|
|
2148
|
-
>)</span
|
|
2149
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2150
|
-
<a
|
|
2151
|
-
href="../types/core_parse_interface.CompiledExpressionFunction.html"
|
|
2152
|
-
class="tsd-signature-type tsd-kind-type-alias"
|
|
2153
|
-
>CompiledExpressionFunction</a
|
|
2154
|
-
><a
|
|
2155
|
-
href="#identifier-1"
|
|
2156
|
-
aria-label="Permalink"
|
|
2157
|
-
class="tsd-anchor-icon"
|
|
2158
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2159
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2160
|
-
></a>
|
|
2161
|
-
</div>
|
|
2162
|
-
<div class="tsd-description">
|
|
2163
|
-
<div class="tsd-comment tsd-typography">
|
|
2164
|
-
<p>Returns the value of an identifier.</p>
|
|
2165
|
-
</div>
|
|
2166
|
-
<div class="tsd-parameters">
|
|
2167
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
2168
|
-
<ul class="tsd-parameter-list">
|
|
2169
|
-
<li>
|
|
2170
|
-
<span
|
|
2171
|
-
><span class="tsd-kind-parameter">name</span>:
|
|
2172
|
-
<span class="tsd-signature-type">string</span></span
|
|
2173
|
-
>
|
|
2174
|
-
<div class="tsd-comment tsd-typography">
|
|
2175
|
-
<p>The identifier name.</p>
|
|
2176
|
-
</div>
|
|
2177
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2178
|
-
</li>
|
|
2179
|
-
<li>
|
|
2180
|
-
<span
|
|
2181
|
-
><code class="tsd-tag">Optional</code
|
|
2182
|
-
><span class="tsd-kind-parameter">context</span>:
|
|
2183
|
-
<span class="tsd-signature-type">any</span></span
|
|
2184
|
-
>
|
|
2185
|
-
<div class="tsd-comment tsd-typography">
|
|
2186
|
-
<p>The context.</p>
|
|
2187
|
-
</div>
|
|
2188
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2189
|
-
</li>
|
|
2190
|
-
<li>
|
|
2191
|
-
<span
|
|
2192
|
-
><code class="tsd-tag">Optional</code
|
|
2193
|
-
><span class="tsd-kind-parameter">create</span>:
|
|
2194
|
-
<span class="tsd-signature-type">boolean</span>
|
|
2195
|
-
<span class="tsd-signature-symbol">|</span>
|
|
2196
|
-
<span class="tsd-signature-type">1</span></span
|
|
2197
|
-
>
|
|
2198
|
-
<div class="tsd-comment tsd-typography">
|
|
2199
|
-
<p>
|
|
2200
|
-
Whether to create the identifier if it does not
|
|
2201
|
-
exist.
|
|
2202
|
-
</p>
|
|
2203
|
-
</div>
|
|
2204
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2205
|
-
</li>
|
|
2206
|
-
</ul>
|
|
2207
|
-
</div>
|
|
2208
|
-
<h4 class="tsd-returns-title">
|
|
2209
|
-
Returns
|
|
2210
|
-
<a
|
|
2211
|
-
href="../types/core_parse_interface.CompiledExpressionFunction.html"
|
|
2212
|
-
class="tsd-signature-type tsd-kind-type-alias"
|
|
2213
|
-
>CompiledExpressionFunction</a
|
|
2214
|
-
>
|
|
2215
|
-
</h4>
|
|
2216
|
-
<p>The function returning the identifier value.</p>
|
|
2217
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2218
|
-
</div>
|
|
2219
|
-
</li>
|
|
2220
|
-
</ul>
|
|
2221
|
-
</section>
|
|
2222
|
-
<section class="tsd-panel tsd-member">
|
|
2223
|
-
<h3 class="tsd-anchor-link" id="noncomputedmember">
|
|
2224
|
-
<span>non<wbr />Computed<wbr />Member</span
|
|
2225
|
-
><a
|
|
2226
|
-
href="#noncomputedmember"
|
|
2227
|
-
aria-label="Permalink"
|
|
2228
|
-
class="tsd-anchor-icon"
|
|
2229
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2230
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2231
|
-
></a>
|
|
2232
|
-
</h3>
|
|
2233
|
-
<ul class="tsd-signatures">
|
|
2234
|
-
<li class="">
|
|
2235
|
-
<div
|
|
2236
|
-
class="tsd-signature tsd-anchor-link"
|
|
2237
|
-
id="noncomputedmember-1"
|
|
2238
|
-
>
|
|
2239
|
-
<span class="tsd-kind-call-signature"
|
|
2240
|
-
>nonComputedMember</span
|
|
2241
|
-
><span class="tsd-signature-symbol">(</span><br /> <span
|
|
2242
|
-
class="tsd-kind-parameter"
|
|
2243
|
-
>left</span
|
|
2244
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2245
|
-
<span class="tsd-signature-type">Function</span
|
|
2246
|
-
><span class="tsd-signature-symbol">,</span><br /> <span
|
|
2247
|
-
class="tsd-kind-parameter"
|
|
2248
|
-
>right</span
|
|
2249
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2250
|
-
<span class="tsd-signature-type">string</span
|
|
2251
|
-
><span class="tsd-signature-symbol">,</span><br /> <span
|
|
2252
|
-
class="tsd-kind-parameter"
|
|
2253
|
-
>context</span
|
|
2254
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
2255
|
-
<span class="tsd-signature-type">any</span
|
|
2256
|
-
><span class="tsd-signature-symbol">,</span><br /> <span
|
|
2257
|
-
class="tsd-kind-parameter"
|
|
2258
|
-
>create</span
|
|
2259
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
2260
|
-
<span class="tsd-signature-type">boolean</span>
|
|
2261
|
-
<span class="tsd-signature-symbol">|</span>
|
|
2262
|
-
<span class="tsd-signature-type">1</span
|
|
2263
|
-
><span class="tsd-signature-symbol">,</span><br /><span
|
|
2264
|
-
class="tsd-signature-symbol"
|
|
2265
|
-
>)</span
|
|
2266
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2267
|
-
<span class="tsd-signature-type">Function</span
|
|
2268
|
-
><a
|
|
2269
|
-
href="#noncomputedmember-1"
|
|
2270
|
-
aria-label="Permalink"
|
|
2271
|
-
class="tsd-anchor-icon"
|
|
2272
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2273
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2274
|
-
></a>
|
|
2275
|
-
</div>
|
|
2276
|
-
<div class="tsd-description">
|
|
2277
|
-
<div class="tsd-comment tsd-typography">
|
|
2278
|
-
<p>
|
|
2279
|
-
Returns the value of a non-computed member expression.
|
|
2280
|
-
</p>
|
|
2281
|
-
</div>
|
|
2282
|
-
<div class="tsd-parameters">
|
|
2283
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
2284
|
-
<ul class="tsd-parameter-list">
|
|
2285
|
-
<li>
|
|
2286
|
-
<span
|
|
2287
|
-
><span class="tsd-kind-parameter">left</span>:
|
|
2288
|
-
<span class="tsd-signature-type"
|
|
2289
|
-
>Function</span
|
|
2290
|
-
></span
|
|
2291
|
-
>
|
|
2292
|
-
<div class="tsd-comment tsd-typography">
|
|
2293
|
-
<p>The left operand function.</p>
|
|
2294
|
-
</div>
|
|
2295
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2296
|
-
</li>
|
|
2297
|
-
<li>
|
|
2298
|
-
<span
|
|
2299
|
-
><span class="tsd-kind-parameter">right</span>:
|
|
2300
|
-
<span class="tsd-signature-type">string</span></span
|
|
2301
|
-
>
|
|
2302
|
-
<div class="tsd-comment tsd-typography">
|
|
2303
|
-
<p>The right operand function.</p>
|
|
2304
|
-
</div>
|
|
2305
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2306
|
-
</li>
|
|
2307
|
-
<li>
|
|
2308
|
-
<span
|
|
2309
|
-
><code class="tsd-tag">Optional</code
|
|
2310
|
-
><span class="tsd-kind-parameter">context</span>:
|
|
2311
|
-
<span class="tsd-signature-type">any</span></span
|
|
2312
|
-
>
|
|
2313
|
-
<div class="tsd-comment tsd-typography">
|
|
2314
|
-
<p>The context.</p>
|
|
2315
|
-
</div>
|
|
2316
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2317
|
-
</li>
|
|
2318
|
-
<li>
|
|
2319
|
-
<span
|
|
2320
|
-
><code class="tsd-tag">Optional</code
|
|
2321
|
-
><span class="tsd-kind-parameter">create</span>:
|
|
2322
|
-
<span class="tsd-signature-type">boolean</span>
|
|
2323
|
-
<span class="tsd-signature-symbol">|</span>
|
|
2324
|
-
<span class="tsd-signature-type">1</span></span
|
|
2325
|
-
>
|
|
2326
|
-
<div class="tsd-comment tsd-typography">
|
|
2327
|
-
<p>
|
|
2328
|
-
Whether to create the member if it does not exist.
|
|
2329
|
-
</p>
|
|
2330
|
-
</div>
|
|
2331
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2332
|
-
</li>
|
|
2333
|
-
</ul>
|
|
2334
|
-
</div>
|
|
2335
|
-
<h4 class="tsd-returns-title">
|
|
2336
|
-
Returns <span class="tsd-signature-type">Function</span>
|
|
2337
|
-
</h4>
|
|
2338
|
-
<p>The function returning the non-computed member value.</p>
|
|
2339
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2340
|
-
</div>
|
|
2341
|
-
</li>
|
|
2342
|
-
</ul>
|
|
2343
|
-
</section>
|
|
2344
|
-
<section class="tsd-panel tsd-member">
|
|
2345
|
-
<h3 class="tsd-anchor-link" id="recurse">
|
|
2346
|
-
<span>recurse</span
|
|
2347
|
-
><a
|
|
2348
|
-
href="#recurse"
|
|
2349
|
-
aria-label="Permalink"
|
|
2350
|
-
class="tsd-anchor-icon"
|
|
2351
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2352
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2353
|
-
></a>
|
|
2354
|
-
</h3>
|
|
2355
|
-
<ul class="tsd-signatures">
|
|
2356
|
-
<li class="">
|
|
2357
|
-
<div class="tsd-signature tsd-anchor-link" id="recurse-1">
|
|
2358
|
-
<span class="tsd-kind-call-signature">recurse</span
|
|
2359
|
-
><span class="tsd-signature-symbol">(</span><br /> <span
|
|
2360
|
-
class="tsd-kind-parameter"
|
|
2361
|
-
>ast</span
|
|
2362
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2363
|
-
<a
|
|
2364
|
-
href="../types/core_parse_ast_ast-node.ASTNode.html"
|
|
2365
|
-
class="tsd-signature-type tsd-kind-type-alias"
|
|
2366
|
-
>ASTNode</a
|
|
2367
|
-
><span class="tsd-signature-symbol">,</span><br /> <span
|
|
2368
|
-
class="tsd-kind-parameter"
|
|
2369
|
-
>context</span
|
|
2370
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
2371
|
-
<span class="tsd-signature-type">any</span
|
|
2372
|
-
><span class="tsd-signature-symbol">,</span><br /> <span
|
|
2373
|
-
class="tsd-kind-parameter"
|
|
2374
|
-
>create</span
|
|
2375
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
2376
|
-
<span class="tsd-signature-type">boolean</span>
|
|
2377
|
-
<span class="tsd-signature-symbol">|</span>
|
|
2378
|
-
<span class="tsd-signature-type">1</span
|
|
2379
|
-
><span class="tsd-signature-symbol">,</span><br /><span
|
|
2380
|
-
class="tsd-signature-symbol"
|
|
2381
|
-
>)</span
|
|
2382
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2383
|
-
<a
|
|
2384
|
-
href="../types/core_parse_interface.CompiledExpressionFunction.html"
|
|
2385
|
-
class="tsd-signature-type tsd-kind-type-alias"
|
|
2386
|
-
>CompiledExpressionFunction</a
|
|
2387
|
-
><a
|
|
2388
|
-
href="#recurse-1"
|
|
2389
|
-
aria-label="Permalink"
|
|
2390
|
-
class="tsd-anchor-icon"
|
|
2391
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2392
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2393
|
-
></a>
|
|
2394
|
-
</div>
|
|
2395
|
-
<div class="tsd-description">
|
|
2396
|
-
<div class="tsd-comment tsd-typography">
|
|
2397
|
-
<p>Recurses the AST nodes.</p>
|
|
2398
|
-
</div>
|
|
2399
|
-
<div class="tsd-parameters">
|
|
2400
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
2401
|
-
<ul class="tsd-parameter-list">
|
|
2402
|
-
<li>
|
|
2403
|
-
<span
|
|
2404
|
-
><span class="tsd-kind-parameter">ast</span>:
|
|
2405
|
-
<a
|
|
2406
|
-
href="../types/core_parse_ast_ast-node.ASTNode.html"
|
|
2407
|
-
class="tsd-signature-type tsd-kind-type-alias"
|
|
2408
|
-
>ASTNode</a
|
|
2409
|
-
></span
|
|
2410
|
-
>
|
|
2411
|
-
<div class="tsd-comment tsd-typography">
|
|
2412
|
-
<p>The AST node.</p>
|
|
2413
|
-
</div>
|
|
2414
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2415
|
-
</li>
|
|
2416
|
-
<li>
|
|
2417
|
-
<span
|
|
2418
|
-
><code class="tsd-tag">Optional</code
|
|
2419
|
-
><span class="tsd-kind-parameter">context</span>:
|
|
2420
|
-
<span class="tsd-signature-type">any</span></span
|
|
2421
|
-
>
|
|
2422
|
-
<div class="tsd-comment tsd-typography">
|
|
2423
|
-
<p>The context.</p>
|
|
2424
|
-
</div>
|
|
2425
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2426
|
-
</li>
|
|
2427
|
-
<li>
|
|
2428
|
-
<span
|
|
2429
|
-
><code class="tsd-tag">Optional</code
|
|
2430
|
-
><span class="tsd-kind-parameter">create</span>:
|
|
2431
|
-
<span class="tsd-signature-type">boolean</span>
|
|
2432
|
-
<span class="tsd-signature-symbol">|</span>
|
|
2433
|
-
<span class="tsd-signature-type">1</span></span
|
|
2434
|
-
>
|
|
2435
|
-
<div class="tsd-comment tsd-typography">
|
|
2436
|
-
<p>The create flag.</p>
|
|
2437
|
-
</div>
|
|
2438
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2439
|
-
</li>
|
|
2440
|
-
</ul>
|
|
2441
|
-
</div>
|
|
2442
|
-
<h4 class="tsd-returns-title">
|
|
2443
|
-
Returns
|
|
2444
|
-
<a
|
|
2445
|
-
href="../types/core_parse_interface.CompiledExpressionFunction.html"
|
|
2446
|
-
class="tsd-signature-type tsd-kind-type-alias"
|
|
2447
|
-
>CompiledExpressionFunction</a
|
|
2448
|
-
>
|
|
2449
|
-
</h4>
|
|
2450
|
-
<p>The recursive function.</p>
|
|
2451
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2452
|
-
</div>
|
|
2453
|
-
</li>
|
|
2454
|
-
</ul>
|
|
2455
|
-
</section>
|
|
2456
|
-
<section class="tsd-panel tsd-member">
|
|
2457
|
-
<h3 class="tsd-anchor-link" id="ternary">
|
|
2458
|
-
<span>ternary?:</span
|
|
2459
|
-
><a
|
|
2460
|
-
href="#ternary"
|
|
2461
|
-
aria-label="Permalink"
|
|
2462
|
-
class="tsd-anchor-icon"
|
|
2463
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2464
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2465
|
-
></a>
|
|
2466
|
-
</h3>
|
|
2467
|
-
<ul class="tsd-signatures">
|
|
2468
|
-
<li class="">
|
|
2469
|
-
<div class="tsd-signature tsd-anchor-link" id="ternary-1">
|
|
2470
|
-
<span class="tsd-kind-call-signature"
|
|
2471
|
-
>"ternary?:"</span
|
|
2472
|
-
><span class="tsd-signature-symbol">(</span><br /> <span
|
|
2473
|
-
class="tsd-kind-parameter"
|
|
2474
|
-
>test</span
|
|
2475
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2476
|
-
<span class="tsd-signature-type">Function</span
|
|
2477
|
-
><span class="tsd-signature-symbol">,</span><br /> <span
|
|
2478
|
-
class="tsd-kind-parameter"
|
|
2479
|
-
>alternate</span
|
|
2480
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2481
|
-
<span class="tsd-signature-type">Function</span
|
|
2482
|
-
><span class="tsd-signature-symbol">,</span><br /> <span
|
|
2483
|
-
class="tsd-kind-parameter"
|
|
2484
|
-
>consequent</span
|
|
2485
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2486
|
-
<span class="tsd-signature-type">Function</span
|
|
2487
|
-
><span class="tsd-signature-symbol">,</span><br /> <span
|
|
2488
|
-
class="tsd-kind-parameter"
|
|
2489
|
-
>context</span
|
|
2490
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
2491
|
-
<span class="tsd-signature-type">any</span
|
|
2492
|
-
><span class="tsd-signature-symbol">,</span><br /><span
|
|
2493
|
-
class="tsd-signature-symbol"
|
|
2494
|
-
>)</span
|
|
2495
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2496
|
-
<span class="tsd-signature-type">Function</span
|
|
2497
|
-
><a
|
|
2498
|
-
href="#ternary-1"
|
|
2499
|
-
aria-label="Permalink"
|
|
2500
|
-
class="tsd-anchor-icon"
|
|
2501
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2502
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2503
|
-
></a>
|
|
2504
|
-
</div>
|
|
2505
|
-
<div class="tsd-description">
|
|
2506
|
-
<div class="tsd-comment tsd-typography">
|
|
2507
|
-
<p>Ternary conditional operation.</p>
|
|
2508
|
-
</div>
|
|
2509
|
-
<div class="tsd-parameters">
|
|
2510
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
2511
|
-
<ul class="tsd-parameter-list">
|
|
2512
|
-
<li>
|
|
2513
|
-
<span
|
|
2514
|
-
><span class="tsd-kind-parameter">test</span>:
|
|
2515
|
-
<span class="tsd-signature-type"
|
|
2516
|
-
>Function</span
|
|
2517
|
-
></span
|
|
2518
|
-
>
|
|
2519
|
-
<div class="tsd-comment tsd-typography">
|
|
2520
|
-
<p>The test function.</p>
|
|
2521
|
-
</div>
|
|
2522
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2523
|
-
</li>
|
|
2524
|
-
<li>
|
|
2525
|
-
<span
|
|
2526
|
-
><span class="tsd-kind-parameter">alternate</span>:
|
|
2527
|
-
<span class="tsd-signature-type"
|
|
2528
|
-
>Function</span
|
|
2529
|
-
></span
|
|
2530
|
-
>
|
|
2531
|
-
<div class="tsd-comment tsd-typography">
|
|
2532
|
-
<p>The alternate function.</p>
|
|
2533
|
-
</div>
|
|
2534
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2535
|
-
</li>
|
|
2536
|
-
<li>
|
|
2537
|
-
<span
|
|
2538
|
-
><span class="tsd-kind-parameter">consequent</span>:
|
|
2539
|
-
<span class="tsd-signature-type"
|
|
2540
|
-
>Function</span
|
|
2541
|
-
></span
|
|
2542
|
-
>
|
|
2543
|
-
<div class="tsd-comment tsd-typography">
|
|
2544
|
-
<p>The consequent function.</p>
|
|
2545
|
-
</div>
|
|
2546
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2547
|
-
</li>
|
|
2548
|
-
<li>
|
|
2549
|
-
<span
|
|
2550
|
-
><code class="tsd-tag">Optional</code
|
|
2551
|
-
><span class="tsd-kind-parameter">context</span>:
|
|
2552
|
-
<span class="tsd-signature-type">any</span></span
|
|
2553
|
-
>
|
|
2554
|
-
<div class="tsd-comment tsd-typography">
|
|
2555
|
-
<p>The context.</p>
|
|
2556
|
-
</div>
|
|
2557
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2558
|
-
</li>
|
|
2559
|
-
</ul>
|
|
2560
|
-
</div>
|
|
2561
|
-
<h4 class="tsd-returns-title">
|
|
2562
|
-
Returns <span class="tsd-signature-type">Function</span>
|
|
2563
|
-
</h4>
|
|
2564
|
-
<p>The ternary conditional function.</p>
|
|
2565
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2566
|
-
</div>
|
|
2567
|
-
</li>
|
|
2568
|
-
</ul>
|
|
2569
|
-
</section>
|
|
2570
|
-
<section class="tsd-panel tsd-member">
|
|
2571
|
-
<h3 class="tsd-anchor-link" id="unary-">
|
|
2572
|
-
<span>unary-</span
|
|
2573
|
-
><a
|
|
2574
|
-
href="#unary-"
|
|
2575
|
-
aria-label="Permalink"
|
|
2576
|
-
class="tsd-anchor-icon"
|
|
2577
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2578
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2579
|
-
></a>
|
|
2580
|
-
</h3>
|
|
2581
|
-
<ul class="tsd-signatures">
|
|
2582
|
-
<li class="">
|
|
2583
|
-
<div class="tsd-signature tsd-anchor-link" id="unary--1">
|
|
2584
|
-
<span class="tsd-kind-call-signature"
|
|
2585
|
-
>"unary-"</span
|
|
2586
|
-
><span class="tsd-signature-symbol">(</span
|
|
2587
|
-
><span class="tsd-kind-parameter">argument</span
|
|
2588
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2589
|
-
<span class="tsd-signature-type">Function</span
|
|
2590
|
-
><span class="tsd-signature-symbol">,</span>
|
|
2591
|
-
<span class="tsd-kind-parameter">context</span
|
|
2592
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
2593
|
-
<span class="tsd-signature-type">any</span
|
|
2594
|
-
><span class="tsd-signature-symbol">)</span
|
|
2595
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2596
|
-
<span class="tsd-signature-type">Function</span
|
|
2597
|
-
><a
|
|
2598
|
-
href="#unary--1"
|
|
2599
|
-
aria-label="Permalink"
|
|
2600
|
-
class="tsd-anchor-icon"
|
|
2601
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2602
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2603
|
-
></a>
|
|
2604
|
-
</div>
|
|
2605
|
-
<div class="tsd-description">
|
|
2606
|
-
<div class="tsd-comment tsd-typography">
|
|
2607
|
-
<p>Unary minus operation.</p>
|
|
2608
|
-
</div>
|
|
2609
|
-
<div class="tsd-parameters">
|
|
2610
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
2611
|
-
<ul class="tsd-parameter-list">
|
|
2612
|
-
<li>
|
|
2613
|
-
<span
|
|
2614
|
-
><span class="tsd-kind-parameter">argument</span>:
|
|
2615
|
-
<span class="tsd-signature-type"
|
|
2616
|
-
>Function</span
|
|
2617
|
-
></span
|
|
2618
|
-
>
|
|
2619
|
-
<div class="tsd-comment tsd-typography">
|
|
2620
|
-
<p>The argument function.</p>
|
|
2621
|
-
</div>
|
|
2622
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2623
|
-
</li>
|
|
2624
|
-
<li>
|
|
2625
|
-
<span
|
|
2626
|
-
><code class="tsd-tag">Optional</code
|
|
2627
|
-
><span class="tsd-kind-parameter">context</span>:
|
|
2628
|
-
<span class="tsd-signature-type">any</span></span
|
|
2629
|
-
>
|
|
2630
|
-
<div class="tsd-comment tsd-typography">
|
|
2631
|
-
<p>The context.</p>
|
|
2632
|
-
</div>
|
|
2633
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2634
|
-
</li>
|
|
2635
|
-
</ul>
|
|
2636
|
-
</div>
|
|
2637
|
-
<h4 class="tsd-returns-title">
|
|
2638
|
-
Returns <span class="tsd-signature-type">Function</span>
|
|
2639
|
-
</h4>
|
|
2640
|
-
<p>The unary minus function.</p>
|
|
2641
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2642
|
-
</div>
|
|
2643
|
-
</li>
|
|
2644
|
-
</ul>
|
|
2645
|
-
</section>
|
|
2646
|
-
<section class="tsd-panel tsd-member">
|
|
2647
|
-
<h3 class="tsd-anchor-link" id="unary">
|
|
2648
|
-
<span>unary!</span
|
|
2649
|
-
><a href="#unary" aria-label="Permalink" class="tsd-anchor-icon"
|
|
2650
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2651
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2652
|
-
></a>
|
|
2653
|
-
</h3>
|
|
2654
|
-
<ul class="tsd-signatures">
|
|
2655
|
-
<li class="">
|
|
2656
|
-
<div class="tsd-signature tsd-anchor-link" id="unary-1">
|
|
2657
|
-
<span class="tsd-kind-call-signature"
|
|
2658
|
-
>"unary!"</span
|
|
2659
|
-
><span class="tsd-signature-symbol">(</span
|
|
2660
|
-
><span class="tsd-kind-parameter">argument</span
|
|
2661
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2662
|
-
<span class="tsd-signature-type">Function</span
|
|
2663
|
-
><span class="tsd-signature-symbol">,</span>
|
|
2664
|
-
<span class="tsd-kind-parameter">context</span
|
|
2665
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
2666
|
-
<span class="tsd-signature-type">any</span
|
|
2667
|
-
><span class="tsd-signature-symbol">)</span
|
|
2668
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2669
|
-
<span class="tsd-signature-type">Function</span
|
|
2670
|
-
><a
|
|
2671
|
-
href="#unary-1"
|
|
2672
|
-
aria-label="Permalink"
|
|
2673
|
-
class="tsd-anchor-icon"
|
|
2674
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2675
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2676
|
-
></a>
|
|
2677
|
-
</div>
|
|
2678
|
-
<div class="tsd-description">
|
|
2679
|
-
<div class="tsd-comment tsd-typography">
|
|
2680
|
-
<p>Unary negation operation.</p>
|
|
2681
|
-
</div>
|
|
2682
|
-
<div class="tsd-parameters">
|
|
2683
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
2684
|
-
<ul class="tsd-parameter-list">
|
|
2685
|
-
<li>
|
|
2686
|
-
<span
|
|
2687
|
-
><span class="tsd-kind-parameter">argument</span>:
|
|
2688
|
-
<span class="tsd-signature-type"
|
|
2689
|
-
>Function</span
|
|
2690
|
-
></span
|
|
2691
|
-
>
|
|
2692
|
-
<div class="tsd-comment tsd-typography">
|
|
2693
|
-
<p>The argument function.</p>
|
|
2694
|
-
</div>
|
|
2695
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2696
|
-
</li>
|
|
2697
|
-
<li>
|
|
2698
|
-
<span
|
|
2699
|
-
><code class="tsd-tag">Optional</code
|
|
2700
|
-
><span class="tsd-kind-parameter">context</span>:
|
|
2701
|
-
<span class="tsd-signature-type">any</span></span
|
|
2702
|
-
>
|
|
2703
|
-
<div class="tsd-comment tsd-typography">
|
|
2704
|
-
<p>The context.</p>
|
|
2705
|
-
</div>
|
|
2706
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2707
|
-
</li>
|
|
2708
|
-
</ul>
|
|
2709
|
-
</div>
|
|
2710
|
-
<h4 class="tsd-returns-title">
|
|
2711
|
-
Returns <span class="tsd-signature-type">Function</span>
|
|
2712
|
-
</h4>
|
|
2713
|
-
<p>The unary negation function.</p>
|
|
2714
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2715
|
-
</div>
|
|
2716
|
-
</li>
|
|
2717
|
-
</ul>
|
|
2718
|
-
</section>
|
|
2719
|
-
<section class="tsd-panel tsd-member">
|
|
2720
|
-
<h3 class="tsd-anchor-link" id="unary-2">
|
|
2721
|
-
<span>unary+</span
|
|
2722
|
-
><a
|
|
2723
|
-
href="#unary-2"
|
|
2724
|
-
aria-label="Permalink"
|
|
2725
|
-
class="tsd-anchor-icon"
|
|
2726
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2727
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2728
|
-
></a>
|
|
2729
|
-
</h3>
|
|
2730
|
-
<ul class="tsd-signatures">
|
|
2731
|
-
<li class="">
|
|
2732
|
-
<div class="tsd-signature tsd-anchor-link" id="unary-3">
|
|
2733
|
-
<span class="tsd-kind-call-signature"
|
|
2734
|
-
>"unary+"</span
|
|
2735
|
-
><span class="tsd-signature-symbol">(</span
|
|
2736
|
-
><span class="tsd-kind-parameter">argument</span
|
|
2737
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2738
|
-
<span class="tsd-signature-type">Function</span
|
|
2739
|
-
><span class="tsd-signature-symbol">,</span>
|
|
2740
|
-
<span class="tsd-kind-parameter">context</span
|
|
2741
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
2742
|
-
<span class="tsd-signature-type">any</span
|
|
2743
|
-
><span class="tsd-signature-symbol">)</span
|
|
2744
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2745
|
-
<span class="tsd-signature-type">Function</span
|
|
2746
|
-
><a
|
|
2747
|
-
href="#unary-3"
|
|
2748
|
-
aria-label="Permalink"
|
|
2749
|
-
class="tsd-anchor-icon"
|
|
2750
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2751
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2752
|
-
></a>
|
|
2753
|
-
</div>
|
|
2754
|
-
<div class="tsd-description">
|
|
2755
|
-
<div class="tsd-comment tsd-typography">
|
|
2756
|
-
<p>Unary plus operation.</p>
|
|
2757
|
-
</div>
|
|
2758
|
-
<div class="tsd-parameters">
|
|
2759
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
2760
|
-
<ul class="tsd-parameter-list">
|
|
2761
|
-
<li>
|
|
2762
|
-
<span
|
|
2763
|
-
><span class="tsd-kind-parameter">argument</span>:
|
|
2764
|
-
<span class="tsd-signature-type"
|
|
2765
|
-
>Function</span
|
|
2766
|
-
></span
|
|
2767
|
-
>
|
|
2768
|
-
<div class="tsd-comment tsd-typography">
|
|
2769
|
-
<p>The argument function.</p>
|
|
2770
|
-
</div>
|
|
2771
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2772
|
-
</li>
|
|
2773
|
-
<li>
|
|
2774
|
-
<span
|
|
2775
|
-
><code class="tsd-tag">Optional</code
|
|
2776
|
-
><span class="tsd-kind-parameter">context</span>:
|
|
2777
|
-
<span class="tsd-signature-type">any</span></span
|
|
2778
|
-
>
|
|
2779
|
-
<div class="tsd-comment tsd-typography">
|
|
2780
|
-
<p>The context.</p>
|
|
2781
|
-
</div>
|
|
2782
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2783
|
-
</li>
|
|
2784
|
-
</ul>
|
|
2785
|
-
</div>
|
|
2786
|
-
<h4 class="tsd-returns-title">
|
|
2787
|
-
Returns <span class="tsd-signature-type">Function</span>
|
|
2788
|
-
</h4>
|
|
2789
|
-
<p>The unary plus function.</p>
|
|
2790
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2791
|
-
</div>
|
|
2792
|
-
</li>
|
|
2793
|
-
</ul>
|
|
2794
|
-
</section>
|
|
2795
|
-
<section class="tsd-panel tsd-member">
|
|
2796
|
-
<h3 class="tsd-anchor-link" id="value">
|
|
2797
|
-
<span>value</span
|
|
2798
|
-
><a href="#value" aria-label="Permalink" class="tsd-anchor-icon"
|
|
2799
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2800
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2801
|
-
></a>
|
|
2802
|
-
</h3>
|
|
2803
|
-
<ul class="tsd-signatures">
|
|
2804
|
-
<li class="">
|
|
2805
|
-
<div class="tsd-signature tsd-anchor-link" id="value-1">
|
|
2806
|
-
<span class="tsd-kind-call-signature">value</span
|
|
2807
|
-
><span class="tsd-signature-symbol">(</span
|
|
2808
|
-
><span class="tsd-kind-parameter">value</span
|
|
2809
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2810
|
-
<span class="tsd-signature-type">any</span
|
|
2811
|
-
><span class="tsd-signature-symbol">,</span>
|
|
2812
|
-
<span class="tsd-kind-parameter">context</span
|
|
2813
|
-
><span class="tsd-signature-symbol">?:</span>
|
|
2814
|
-
<span class="tsd-signature-type">any</span
|
|
2815
|
-
><span class="tsd-signature-symbol">)</span
|
|
2816
|
-
><span class="tsd-signature-symbol">:</span>
|
|
2817
|
-
<a
|
|
2818
|
-
href="../types/core_parse_interface.CompiledExpressionFunction.html"
|
|
2819
|
-
class="tsd-signature-type tsd-kind-type-alias"
|
|
2820
|
-
>CompiledExpressionFunction</a
|
|
2821
|
-
><a
|
|
2822
|
-
href="#value-1"
|
|
2823
|
-
aria-label="Permalink"
|
|
2824
|
-
class="tsd-anchor-icon"
|
|
2825
|
-
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
2826
|
-
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
2827
|
-
></a>
|
|
2828
|
-
</div>
|
|
2829
|
-
<div class="tsd-description">
|
|
2830
|
-
<div class="tsd-comment tsd-typography">
|
|
2831
|
-
<p>Returns the value of a literal.</p>
|
|
2832
|
-
</div>
|
|
2833
|
-
<div class="tsd-parameters">
|
|
2834
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
2835
|
-
<ul class="tsd-parameter-list">
|
|
2836
|
-
<li>
|
|
2837
|
-
<span
|
|
2838
|
-
><span class="tsd-kind-parameter">value</span>:
|
|
2839
|
-
<span class="tsd-signature-type">any</span></span
|
|
2840
|
-
>
|
|
2841
|
-
<div class="tsd-comment tsd-typography">
|
|
2842
|
-
<p>The literal value.</p>
|
|
2843
|
-
</div>
|
|
2844
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2845
|
-
</li>
|
|
2846
|
-
<li>
|
|
2847
|
-
<span
|
|
2848
|
-
><code class="tsd-tag">Optional</code
|
|
2849
|
-
><span class="tsd-kind-parameter">context</span>:
|
|
2850
|
-
<span class="tsd-signature-type">any</span></span
|
|
2851
|
-
>
|
|
2852
|
-
<div class="tsd-comment tsd-typography">
|
|
2853
|
-
<p>The context.</p>
|
|
2854
|
-
</div>
|
|
2855
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2856
|
-
</li>
|
|
2857
|
-
</ul>
|
|
2858
|
-
</div>
|
|
2859
|
-
<h4 class="tsd-returns-title">
|
|
2860
|
-
Returns
|
|
2861
|
-
<a
|
|
2862
|
-
href="../types/core_parse_interface.CompiledExpressionFunction.html"
|
|
2863
|
-
class="tsd-signature-type tsd-kind-type-alias"
|
|
2864
|
-
>CompiledExpressionFunction</a
|
|
2865
|
-
>
|
|
2866
|
-
</h4>
|
|
2867
|
-
<p>The function returning the literal value.</p>
|
|
2868
|
-
<div class="tsd-comment tsd-typography"></div>
|
|
2869
|
-
</div>
|
|
2870
|
-
</li>
|
|
2871
|
-
</ul>
|
|
2872
|
-
</section>
|
|
2873
|
-
</section>
|
|
2874
|
-
</details>
|
|
2875
|
-
</div>
|
|
2876
|
-
<div class="col-sidebar">
|
|
2877
|
-
<div class="page-menu">
|
|
2878
|
-
<div class="tsd-navigation settings">
|
|
2879
|
-
<details class="tsd-accordion">
|
|
2880
|
-
<summary class="tsd-accordion-summary">
|
|
2881
|
-
<svg
|
|
2882
|
-
width="20"
|
|
2883
|
-
height="20"
|
|
2884
|
-
viewBox="0 0 24 24"
|
|
2885
|
-
fill="none"
|
|
2886
|
-
aria-hidden="true"
|
|
2887
|
-
>
|
|
2888
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
2889
|
-
</svg>
|
|
2890
|
-
<h3>Settings</h3>
|
|
2891
|
-
</summary>
|
|
2892
|
-
<div class="tsd-accordion-details">
|
|
2893
|
-
<div class="tsd-filter-visibility">
|
|
2894
|
-
<span class="settings-label">Member Visibility</span>
|
|
2895
|
-
<ul id="tsd-filter-options">
|
|
2896
|
-
<li class="tsd-filter-item">
|
|
2897
|
-
<label class="tsd-filter-input"
|
|
2898
|
-
><input
|
|
2899
|
-
type="checkbox"
|
|
2900
|
-
id="tsd-filter-protected"
|
|
2901
|
-
name="protected"
|
|
2902
|
-
/><svg
|
|
2903
|
-
width="32"
|
|
2904
|
-
height="32"
|
|
2905
|
-
viewBox="0 0 32 32"
|
|
2906
|
-
aria-hidden="true"
|
|
2907
|
-
>
|
|
2908
|
-
<rect
|
|
2909
|
-
class="tsd-checkbox-background"
|
|
2910
|
-
width="30"
|
|
2911
|
-
height="30"
|
|
2912
|
-
x="1"
|
|
2913
|
-
y="1"
|
|
2914
|
-
rx="6"
|
|
2915
|
-
fill="none"
|
|
2916
|
-
></rect>
|
|
2917
|
-
<path
|
|
2918
|
-
class="tsd-checkbox-checkmark"
|
|
2919
|
-
d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25"
|
|
2920
|
-
stroke="none"
|
|
2921
|
-
stroke-width="3.5"
|
|
2922
|
-
stroke-linejoin="round"
|
|
2923
|
-
fill="none"
|
|
2924
|
-
></path></svg
|
|
2925
|
-
><span>Protected</span></label
|
|
2926
|
-
>
|
|
2927
|
-
</li>
|
|
2928
|
-
<li class="tsd-filter-item">
|
|
2929
|
-
<label class="tsd-filter-input"
|
|
2930
|
-
><input
|
|
2931
|
-
type="checkbox"
|
|
2932
|
-
id="tsd-filter-inherited"
|
|
2933
|
-
name="inherited"
|
|
2934
|
-
checked
|
|
2935
|
-
/><svg
|
|
2936
|
-
width="32"
|
|
2937
|
-
height="32"
|
|
2938
|
-
viewBox="0 0 32 32"
|
|
2939
|
-
aria-hidden="true"
|
|
2940
|
-
>
|
|
2941
|
-
<rect
|
|
2942
|
-
class="tsd-checkbox-background"
|
|
2943
|
-
width="30"
|
|
2944
|
-
height="30"
|
|
2945
|
-
x="1"
|
|
2946
|
-
y="1"
|
|
2947
|
-
rx="6"
|
|
2948
|
-
fill="none"
|
|
2949
|
-
></rect>
|
|
2950
|
-
<path
|
|
2951
|
-
class="tsd-checkbox-checkmark"
|
|
2952
|
-
d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25"
|
|
2953
|
-
stroke="none"
|
|
2954
|
-
stroke-width="3.5"
|
|
2955
|
-
stroke-linejoin="round"
|
|
2956
|
-
fill="none"
|
|
2957
|
-
></path></svg
|
|
2958
|
-
><span>Inherited</span></label
|
|
2959
|
-
>
|
|
2960
|
-
</li>
|
|
2961
|
-
<li class="tsd-filter-item">
|
|
2962
|
-
<label class="tsd-filter-input"
|
|
2963
|
-
><input
|
|
2964
|
-
type="checkbox"
|
|
2965
|
-
id="tsd-filter-external"
|
|
2966
|
-
name="external"
|
|
2967
|
-
/><svg
|
|
2968
|
-
width="32"
|
|
2969
|
-
height="32"
|
|
2970
|
-
viewBox="0 0 32 32"
|
|
2971
|
-
aria-hidden="true"
|
|
2972
|
-
>
|
|
2973
|
-
<rect
|
|
2974
|
-
class="tsd-checkbox-background"
|
|
2975
|
-
width="30"
|
|
2976
|
-
height="30"
|
|
2977
|
-
x="1"
|
|
2978
|
-
y="1"
|
|
2979
|
-
rx="6"
|
|
2980
|
-
fill="none"
|
|
2981
|
-
></rect>
|
|
2982
|
-
<path
|
|
2983
|
-
class="tsd-checkbox-checkmark"
|
|
2984
|
-
d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25"
|
|
2985
|
-
stroke="none"
|
|
2986
|
-
stroke-width="3.5"
|
|
2987
|
-
stroke-linejoin="round"
|
|
2988
|
-
fill="none"
|
|
2989
|
-
></path></svg
|
|
2990
|
-
><span>External</span></label
|
|
2991
|
-
>
|
|
2992
|
-
</li>
|
|
2993
|
-
</ul>
|
|
2994
|
-
</div>
|
|
2995
|
-
<div class="tsd-theme-toggle">
|
|
2996
|
-
<label class="settings-label" for="tsd-theme">Theme</label
|
|
2997
|
-
><select id="tsd-theme">
|
|
2998
|
-
<option value="os">OS</option>
|
|
2999
|
-
<option value="light">Light</option>
|
|
3000
|
-
<option value="dark">Dark</option>
|
|
3001
|
-
</select>
|
|
3002
|
-
</div>
|
|
3003
|
-
</div>
|
|
3004
|
-
</details>
|
|
3005
|
-
</div>
|
|
3006
|
-
<details open class="tsd-accordion tsd-page-navigation">
|
|
3007
|
-
<summary class="tsd-accordion-summary">
|
|
3008
|
-
<svg
|
|
3009
|
-
width="20"
|
|
3010
|
-
height="20"
|
|
3011
|
-
viewBox="0 0 24 24"
|
|
3012
|
-
fill="none"
|
|
3013
|
-
aria-hidden="true"
|
|
3014
|
-
>
|
|
3015
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
3016
|
-
</svg>
|
|
3017
|
-
<h3>On This Page</h3>
|
|
3018
|
-
</summary>
|
|
3019
|
-
<div class="tsd-accordion-details">
|
|
3020
|
-
<details open class="tsd-accordion tsd-page-navigation-section">
|
|
3021
|
-
<summary
|
|
3022
|
-
class="tsd-accordion-summary"
|
|
3023
|
-
data-key="section-Constructors"
|
|
3024
|
-
>
|
|
3025
|
-
<svg
|
|
3026
|
-
width="20"
|
|
3027
|
-
height="20"
|
|
3028
|
-
viewBox="0 0 24 24"
|
|
3029
|
-
fill="none"
|
|
3030
|
-
aria-hidden="true"
|
|
3031
|
-
>
|
|
3032
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use></svg
|
|
3033
|
-
>Constructors
|
|
3034
|
-
</summary>
|
|
3035
|
-
<div>
|
|
3036
|
-
<a href="#constructor"
|
|
3037
|
-
><svg
|
|
3038
|
-
class="tsd-kind-icon"
|
|
3039
|
-
viewBox="0 0 24 24"
|
|
3040
|
-
aria-label="Constructor"
|
|
3041
|
-
>
|
|
3042
|
-
<use href="../assets/icons.svg#icon-512"></use></svg
|
|
3043
|
-
><span>constructor</span></a
|
|
3044
|
-
>
|
|
3045
|
-
</div>
|
|
3046
|
-
</details>
|
|
3047
|
-
<details open class="tsd-accordion tsd-page-navigation-section">
|
|
3048
|
-
<summary
|
|
3049
|
-
class="tsd-accordion-summary"
|
|
3050
|
-
data-key="section-Properties"
|
|
3051
|
-
>
|
|
3052
|
-
<svg
|
|
3053
|
-
width="20"
|
|
3054
|
-
height="20"
|
|
3055
|
-
viewBox="0 0 24 24"
|
|
3056
|
-
fill="none"
|
|
3057
|
-
aria-hidden="true"
|
|
3058
|
-
>
|
|
3059
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use></svg
|
|
3060
|
-
>Properties
|
|
3061
|
-
</summary>
|
|
3062
|
-
<div>
|
|
3063
|
-
<a href="#filter"
|
|
3064
|
-
><svg
|
|
3065
|
-
class="tsd-kind-icon"
|
|
3066
|
-
viewBox="0 0 24 24"
|
|
3067
|
-
aria-label="Property"
|
|
3068
|
-
>
|
|
3069
|
-
<use href="../assets/icons.svg#icon-1024"></use></svg
|
|
3070
|
-
><span>$filter</span></a
|
|
3071
|
-
>
|
|
3072
|
-
</div>
|
|
3073
|
-
</details>
|
|
3074
|
-
<details open class="tsd-accordion tsd-page-navigation-section">
|
|
3075
|
-
<summary
|
|
3076
|
-
class="tsd-accordion-summary"
|
|
3077
|
-
data-key="section-Methods"
|
|
3078
|
-
>
|
|
3079
|
-
<svg
|
|
3080
|
-
width="20"
|
|
3081
|
-
height="20"
|
|
3082
|
-
viewBox="0 0 24 24"
|
|
3083
|
-
fill="none"
|
|
3084
|
-
aria-hidden="true"
|
|
3085
|
-
>
|
|
3086
|
-
<use href="../assets/icons.svg#icon-chevronDown"></use></svg
|
|
3087
|
-
>Methods
|
|
3088
|
-
</summary>
|
|
3089
|
-
<div>
|
|
3090
|
-
<a href="#binary-"
|
|
3091
|
-
><svg
|
|
3092
|
-
class="tsd-kind-icon"
|
|
3093
|
-
viewBox="0 0 24 24"
|
|
3094
|
-
aria-label="Method"
|
|
3095
|
-
>
|
|
3096
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3097
|
-
><span>binary-</span></a
|
|
3098
|
-
><a href="#binary"
|
|
3099
|
-
><svg
|
|
3100
|
-
class="tsd-kind-icon"
|
|
3101
|
-
viewBox="0 0 24 24"
|
|
3102
|
-
aria-label="Method"
|
|
3103
|
-
>
|
|
3104
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3105
|
-
><span>binary!=</span></a
|
|
3106
|
-
><a href="#binary-2"
|
|
3107
|
-
><svg
|
|
3108
|
-
class="tsd-kind-icon"
|
|
3109
|
-
viewBox="0 0 24 24"
|
|
3110
|
-
aria-label="Method"
|
|
3111
|
-
>
|
|
3112
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3113
|
-
><span>binary!==</span></a
|
|
3114
|
-
><a href="#binary-4"
|
|
3115
|
-
><svg
|
|
3116
|
-
class="tsd-kind-icon"
|
|
3117
|
-
viewBox="0 0 24 24"
|
|
3118
|
-
aria-label="Method"
|
|
3119
|
-
>
|
|
3120
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3121
|
-
><span>binary*</span></a
|
|
3122
|
-
><a href="#binary-6"
|
|
3123
|
-
><svg
|
|
3124
|
-
class="tsd-kind-icon"
|
|
3125
|
-
viewBox="0 0 24 24"
|
|
3126
|
-
aria-label="Method"
|
|
3127
|
-
>
|
|
3128
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3129
|
-
><span>binary/</span></a
|
|
3130
|
-
><a href="#binary-8"
|
|
3131
|
-
><svg
|
|
3132
|
-
class="tsd-kind-icon"
|
|
3133
|
-
viewBox="0 0 24 24"
|
|
3134
|
-
aria-label="Method"
|
|
3135
|
-
>
|
|
3136
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3137
|
-
><span>binary&&</span></a
|
|
3138
|
-
><a href="#binary-10"
|
|
3139
|
-
><svg
|
|
3140
|
-
class="tsd-kind-icon"
|
|
3141
|
-
viewBox="0 0 24 24"
|
|
3142
|
-
aria-label="Method"
|
|
3143
|
-
>
|
|
3144
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3145
|
-
><span>binary%</span></a
|
|
3146
|
-
><a href="#binary-12"
|
|
3147
|
-
><svg
|
|
3148
|
-
class="tsd-kind-icon"
|
|
3149
|
-
viewBox="0 0 24 24"
|
|
3150
|
-
aria-label="Method"
|
|
3151
|
-
>
|
|
3152
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3153
|
-
><span>binary+</span></a
|
|
3154
|
-
><a href="#binary-14"
|
|
3155
|
-
><svg
|
|
3156
|
-
class="tsd-kind-icon"
|
|
3157
|
-
viewBox="0 0 24 24"
|
|
3158
|
-
aria-label="Method"
|
|
3159
|
-
>
|
|
3160
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3161
|
-
><span>binary<</span></a
|
|
3162
|
-
><a href="#binary-16"
|
|
3163
|
-
><svg
|
|
3164
|
-
class="tsd-kind-icon"
|
|
3165
|
-
viewBox="0 0 24 24"
|
|
3166
|
-
aria-label="Method"
|
|
3167
|
-
>
|
|
3168
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3169
|
-
><span>binary<=</span></a
|
|
3170
|
-
><a href="#binary-18"
|
|
3171
|
-
><svg
|
|
3172
|
-
class="tsd-kind-icon"
|
|
3173
|
-
viewBox="0 0 24 24"
|
|
3174
|
-
aria-label="Method"
|
|
3175
|
-
>
|
|
3176
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3177
|
-
><span>binary==</span></a
|
|
3178
|
-
><a href="#binary-20"
|
|
3179
|
-
><svg
|
|
3180
|
-
class="tsd-kind-icon"
|
|
3181
|
-
viewBox="0 0 24 24"
|
|
3182
|
-
aria-label="Method"
|
|
3183
|
-
>
|
|
3184
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3185
|
-
><span>binary===</span></a
|
|
3186
|
-
><a href="#binary-22"
|
|
3187
|
-
><svg
|
|
3188
|
-
class="tsd-kind-icon"
|
|
3189
|
-
viewBox="0 0 24 24"
|
|
3190
|
-
aria-label="Method"
|
|
3191
|
-
>
|
|
3192
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3193
|
-
><span>binary></span></a
|
|
3194
|
-
><a href="#binary-24"
|
|
3195
|
-
><svg
|
|
3196
|
-
class="tsd-kind-icon"
|
|
3197
|
-
viewBox="0 0 24 24"
|
|
3198
|
-
aria-label="Method"
|
|
3199
|
-
>
|
|
3200
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3201
|
-
><span>binary>=</span></a
|
|
3202
|
-
><a href="#binary-26"
|
|
3203
|
-
><svg
|
|
3204
|
-
class="tsd-kind-icon"
|
|
3205
|
-
viewBox="0 0 24 24"
|
|
3206
|
-
aria-label="Method"
|
|
3207
|
-
>
|
|
3208
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3209
|
-
><span>binary||</span></a
|
|
3210
|
-
><a href="#compile"
|
|
3211
|
-
><svg
|
|
3212
|
-
class="tsd-kind-icon"
|
|
3213
|
-
viewBox="0 0 24 24"
|
|
3214
|
-
aria-label="Method"
|
|
3215
|
-
>
|
|
3216
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3217
|
-
><span>compile</span></a
|
|
3218
|
-
><a href="#computedmember"
|
|
3219
|
-
><svg
|
|
3220
|
-
class="tsd-kind-icon"
|
|
3221
|
-
viewBox="0 0 24 24"
|
|
3222
|
-
aria-label="Method"
|
|
3223
|
-
>
|
|
3224
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3225
|
-
><span>computed<wbr />Member</span></a
|
|
3226
|
-
><a href="#identifier"
|
|
3227
|
-
><svg
|
|
3228
|
-
class="tsd-kind-icon"
|
|
3229
|
-
viewBox="0 0 24 24"
|
|
3230
|
-
aria-label="Method"
|
|
3231
|
-
>
|
|
3232
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3233
|
-
><span>identifier</span></a
|
|
3234
|
-
><a href="#noncomputedmember"
|
|
3235
|
-
><svg
|
|
3236
|
-
class="tsd-kind-icon"
|
|
3237
|
-
viewBox="0 0 24 24"
|
|
3238
|
-
aria-label="Method"
|
|
3239
|
-
>
|
|
3240
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3241
|
-
><span>non<wbr />Computed<wbr />Member</span></a
|
|
3242
|
-
><a href="#recurse"
|
|
3243
|
-
><svg
|
|
3244
|
-
class="tsd-kind-icon"
|
|
3245
|
-
viewBox="0 0 24 24"
|
|
3246
|
-
aria-label="Method"
|
|
3247
|
-
>
|
|
3248
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3249
|
-
><span>recurse</span></a
|
|
3250
|
-
><a href="#ternary"
|
|
3251
|
-
><svg
|
|
3252
|
-
class="tsd-kind-icon"
|
|
3253
|
-
viewBox="0 0 24 24"
|
|
3254
|
-
aria-label="Method"
|
|
3255
|
-
>
|
|
3256
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3257
|
-
><span>ternary?:</span></a
|
|
3258
|
-
><a href="#unary-"
|
|
3259
|
-
><svg
|
|
3260
|
-
class="tsd-kind-icon"
|
|
3261
|
-
viewBox="0 0 24 24"
|
|
3262
|
-
aria-label="Method"
|
|
3263
|
-
>
|
|
3264
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3265
|
-
><span>unary-</span></a
|
|
3266
|
-
><a href="#unary"
|
|
3267
|
-
><svg
|
|
3268
|
-
class="tsd-kind-icon"
|
|
3269
|
-
viewBox="0 0 24 24"
|
|
3270
|
-
aria-label="Method"
|
|
3271
|
-
>
|
|
3272
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3273
|
-
><span>unary!</span></a
|
|
3274
|
-
><a href="#unary-2"
|
|
3275
|
-
><svg
|
|
3276
|
-
class="tsd-kind-icon"
|
|
3277
|
-
viewBox="0 0 24 24"
|
|
3278
|
-
aria-label="Method"
|
|
3279
|
-
>
|
|
3280
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3281
|
-
><span>unary+</span></a
|
|
3282
|
-
><a href="#value"
|
|
3283
|
-
><svg
|
|
3284
|
-
class="tsd-kind-icon"
|
|
3285
|
-
viewBox="0 0 24 24"
|
|
3286
|
-
aria-label="Method"
|
|
3287
|
-
>
|
|
3288
|
-
<use href="../assets/icons.svg#icon-2048"></use></svg
|
|
3289
|
-
><span>value</span></a
|
|
3290
|
-
>
|
|
3291
|
-
</div>
|
|
3292
|
-
</details>
|
|
3293
|
-
</div>
|
|
3294
|
-
</details>
|
|
3295
|
-
</div>
|
|
3296
|
-
<div class="site-menu">
|
|
3297
|
-
<nav class="tsd-navigation">
|
|
3298
|
-
<a href="../modules.html">AngularTS</a>
|
|
3299
|
-
<ul class="tsd-small-nested-navigation" id="tsd-nav-container">
|
|
3300
|
-
<li>Loading...</li>
|
|
3301
|
-
</ul>
|
|
3302
|
-
</nav>
|
|
3303
|
-
</div>
|
|
3304
|
-
</div>
|
|
3305
|
-
</div>
|
|
3306
|
-
<footer>
|
|
3307
|
-
<p class="tsd-generator">
|
|
3308
|
-
Generated using
|
|
3309
|
-
<a href="https://typedoc.org/" target="_blank">TypeDoc</a>
|
|
3310
|
-
</p>
|
|
3311
|
-
</footer>
|
|
3312
|
-
<div class="overlay"></div>
|
|
3313
|
-
</body>
|
|
3314
|
-
</html>
|