Any0.25.1
expand_more
abstract external class Any
- Known subtypes:
- AlsoKnownAs, Annotation, AppEnvCluster, Benchmark, Benchmark, BenchmarkReport, BenchmarkResult, Boolean, CData, Checksums, Class, Class, Collection, Comment, CpuInput, CsvInputDataFormat, DataSize, Declaration, DeclaredType, Deprecated, DiscardOutput, DiskInput, DocExample, DocPackageInfo, DocsiteInfo, Documentation, Duration, Dynamic, Editor, EvaluatorSettings, ExecInput, ExtVar, Field, FileInput, FileOutput, FileOutput, Float, Function, Function0, Function1, Function2, Function3, Function4, Function5, FunctionType, Generator, GeneratorSettings, HttpInput, IPv4Address, IPv4Network, IPv6Address, IPv6Network, ImportStr, Inline, Input, InputDataFormat, Int, IntSeq, JsonInputDataFormat, JsonOutputDataFormat, JsonRenderer, JsonStructTag, Language, List, Listing, Map, Mapping, Method, MethodParameter, Microbenchmark, Module, Module, ModuleInfo, ModuleOutput, ModuleType, Name, NetInput, NothingType, Null, NullableType, Number, Object, OpenTelemetry, OperatingSystem, Output, OutputBenchmark, OutputDataFormat, PListRenderer, Package, Package, PackageDependency, Pair, Parser, Parser, ParserBenchmark, PcfRenderDirective, PcfRenderer, Platform, Plugin, Processor, Processor, Project, PrometheusClientOutput, PrometheusInput, PropertiesRenderer, Property, Regex, RegexMatch, Release, RemoteDependency, RenderDirective, Renderer, Renderer, Renderer, Resource, Runtime, Set, Since, SocketListenerInput, SourceCode, SourceCode, SourceLocation, StandardLibrary, StarlarkProcessor, String, StringLiteralType, TailInput, Type, TypeAlias, TypeAlias, TypeDeclaration, TypeParameter, TypeVariable, Typed, UInt128, UnionType, UnknownType, Unlisted, ValueRenderer, VarArgs, Version, VirtualMachine, YamlRenderer, base, convert, go, json, jsonnet, math, net, platform, protobuf, reflect, release, semver, settings, shell, test, u128, 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
Every type is a subtype of Any
.
The following operators are supported for all values:
value1 == value2 // equality
value1 != value2 // inequality
value.member // member access
value?.member // conditional member access; returns `value.member` if `value` is non-null and `null` otherwise
value ?? default // null coalescing; returns `value` if `value` is non-null and `default` otherwise
value is String // type test
value as String // type cast; throws an error unless `value is String`
The top type of the type hierarchy.