Object0.26.0
expand_more
abstract external class Object extends Any
- Known subtypes:
- AbstractStep, AgentConfig, AlertManagerConfig, AlertingConfig, AlertingRule, AlertingRuleGroup, AlsoKnownAs, Annotation, AttachWorkspaceStep, BaseParameter, BasicAuth, Benchmark, Benchmark, BenchmarkReport, BenchmarkResult, CData, Checksums, Class, Command, Comment, Components, Config, Configuration, Contact, CpuInput, CsvInputDataFormat, Declaration, DeclaredType, Deprecated, DiscardOutput, Discriminator, DiskInput, DnsSdConfig, DocExample, DocPackageInfo, DockerImage, DocsiteInfo, Document, Documentation, Dynamic, Editor, Encoding, EvaluatorSettings, Example, ExecInput, Executor, ExtVar, ExternalDocs, ExternalDocumentation, FileInput, FileOutput, FileOutput, FileSdConfig, FilterSpec, FunctionType, GlobalConfig, HTTPResponse, Header, Http, HttpInput, IPv4Address, IPv4Network, IPv6Address, IPv6Network, ImportStr, Info, Inline, Input, InputDataFormat, Inputs, Job, JobFilters, JsonInputDataFormat, JsonOutputDataFormat, JsonRenderer, JsonSchema, KubernetesSdConfig, KubernetesSdConfigSelector, Language, License, Link, Listing, LogicStatement, MACAddress, MacOSExecutor, Machine, Mapping, Match, MediaType, MetadataConfig, Method, MethodParameter, Microbenchmark, Module, Module, ModuleInfo, ModuleOutput, ModuleType, ModulesGenerator, NamespaceSpec, NetInput, NothingType, NullableType, OAuthFlow, OAuthFlows, OpenTelemetry, OperatingSystem, Operation, Orb, Output, OutputBenchmark, OutputDataFormat, Outputs, PListRenderer, Package, PackageDependency, Parameter, Parameter, Parser, Parser, Parser, Parser, ParserBenchmark, PathItem, PcfRenderDirective, PcfRenderer, PersistToWorkspaceStep, PipelineValues, Platform, Plugin, Processor, Processor, Processors, Project, PrometheusClientOutput, PrometheusInput, PrometheusObject, PropertiesRenderer, Property, PropertySchema, Proxy, QueueConfig, RecordingRule, RecordingRuleGroup, Reference, Regex, RegexMatch, RelabelConfig, Release, RemoteDependency, RemoteReadConfig, RemoteWriteConfig, RenderDirective, RenderDirective, Renderer, Renderer, Renderer, Renderer, RequestBody, Resource, Response, RestoreCacheStep, Rule, RunStep, Runtime, SaveCacheStep, ScheduleTrigger, ScheduleTriggerFilter, ScheduleTriggerFilterBranches, Schema, SchemaGenerator, ScrapeConfig, Security, SecurityScheme, Server, ServerVariable, SetupRemoteDockerStep, Sigv4Config, Since, SocketListenerInput, SolrInput, SourceCode, SourceCode, SourceLocation, StandardLibrary, StarlarkProcessor, StaticConfig, StoreArtifacts, StoreTestResults, StringLiteralType, TLSConfig, Tag, TailInput, Telegraf, Type, Type, TypeAlias, TypeDeclaration, TypeParameter, TypeVariable, Typed, UInt128, URI, UnionType, UnknownType, UnlessStep, Unlisted, ValueRenderer, VarArgs, Version, VirtualMachine, WhenStep, Workflow, WorkflowJob, Xml, YamlRenderer, base, convert, expressions, generate, generate, json, json, jsonnet, lua, math, net, platform, protobuf, reflect, release, semver, settings, shell, shellshortcuts, test, text, u128, utils, xml, yaml, yaml
- Known usages:
- All versions:
- 0.29.0-dev, 0.28.1, 0.28.0, 0.28.0-dev, 0.27.2, 0.27.1, 0.27.0, 0.26.3, 0.26.2, 0.26.1, 0.26.0, 0.25.3, 0.25.2, 0.25.1, 0.25.0-dev
obj = new {
name = "Pigeon" // property
"Hello" // element
["two"] = 2 // entry
}
obj.name // "Pigeon"
obj[0] // "Hello"
obj["two"] // 2
An object can be amended to create variants of itself. This is similar to inheritance in prototype-oriented programming.
pigeon = new { name = "Pigeon"; age = 42 }
barnOwl = (pigeon) { name = "Barn Owl" } // override property `name`
oldPigeon = (pigeon) { age = 84 } // override property `age`
Object members may reference other members:
thresholds = new { lower = 10; upper = lower + 5 }
Object members are dynamically bound. This is similar to how computed cells in a spreadsheet work.
thresholds = new { lower = 10; upper = lower + 5 }
thresholds2 = new { lower = 7 } // thresholds2.upper == 12
Objects have memberwise equality and hash code.
To arbitrarily manipulate an object, convert it to a Collection
.
If necessary, the manipulated Collection
can be converted back to an Object
.
pigeon = new { name = "Pigeon"; age = 42 }
manipulated = pigeon.toMap().mapKeys((key, value) -> key.reverse())
manipulated.toDynamic() // new { eman = "Pigeon"; ega = 42 }
A composite value containing members (properties, elements, entries).