Object0.26.3
expand_more
abstract external class Object extends Any
- Known subtypes:
- AbstractStep, AgentConfig, AlsoKnownAs, Annotation, AttachWorkspaceStep, Benchmark, Benchmark, BenchmarkReport, BenchmarkResult, CData, Checksums, Class, Command, Comment, Config, Coralogix, CpuInput, CsvInputDataFormat, Declaration, DeclaredType, Deprecated, DiscardOutput, DiskInput, DocExample, DocPackageInfo, DockerImage, DocsiteInfo, Documentation, Dynamic, Editor, EvaluatorSettings, ExecInput, Executor, ExtVar, Field, FileInput, FileOutput, FileOutput, FilterSpec, FunctionType, Generator, Generator, GeneratorSettings, GeneratorSettings, Http, HttpInput, IPv4Address, IPv4Network, IPv6Address, IPv6Network, ImportStr, Inline, Input, InputDataFormat, Inputs, Job, JobFilters, JsonInputDataFormat, JsonOutputDataFormat, JsonRenderer, JsonStructTag, Language, Listing, LogicStatement, MACAddress, MacOSExecutor, Machine, Mapping, Match, Method, MethodParameter, Microbenchmark, Module, Module, Module, ModuleInfo, ModuleOutput, ModuleType, ModulesGenerator, Name, Name, NetInput, NothingType, NullableType, OpenTelemetry, OpenTelemetryOutput, OperatingSystem, Orb, Output, OutputBenchmark, OutputDataFormat, Outputs, PListRenderer, Package, Package, PackageDependency, Parameter, Parser, Parser, Parser, Parser, ParserBenchmark, PcfRenderDirective, PcfRenderer, PersistToWorkspaceStep, PipelineValues, Platform, Plugin, Processor, Processor, Processors, Project, PrometheusClientOutput, PrometheusInput, PropertiesRenderer, Property, Proxy, Regex, RegexMatch, Release, RemoteDependency, RenderDirective, RenderDirective, Renderer, Renderer, Renderer, Renderer, Renderer, Resource, RestoreCacheStep, RunStep, Runtime, SaveCacheStep, ScheduleTrigger, ScheduleTriggerFilter, ScheduleTriggerFilterBranches, SetupRemoteDockerStep, Since, SocketListenerInput, SolrInput, SourceCode, SourceCode, SourceLocation, StandardLibrary, StarlarkProcessor, StoreArtifacts, StoreTestResults, StringLiteralType, TailInput, Telegraf, Type, Type, TypeAlias, TypeDeclaration, TypeParameter, TypeVariable, Typed, UInt128, URI, UnionType, UnknownType, UnlessStep, Unlisted, ValueRenderer, VarArgs, Version, VirtualMachine, WhenStep, Workflow, WorkflowJob, YamlRenderer, base, csv, generate, generate, go, json, jsonnet, lua, math, net, platform, protobuf, reflect, release, semver, settings, shell, swift, test, u128, utils, xml, 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).