values() — astro Function Reference
Architecture documentation for the values() function in data-store.ts from the astro codebase.
Entity Profile
Dependency Diagram
graph TD a31fb3d7_f070_ed00_c9e0_28d2793a6777["values()"] ac7e948d_1024_ae45_2ea1_742b83aa21b5["ImmutableDataStore"] a31fb3d7_f070_ed00_c9e0_28d2793a6777 -->|defined in| ac7e948d_1024_ae45_2ea1_742b83aa21b5 3b90745d_78ea_8543_7f62_501ddedc7a8d["get()"] a31fb3d7_f070_ed00_c9e0_28d2793a6777 -->|calls| 3b90745d_78ea_8543_7f62_501ddedc7a8d style a31fb3d7_f070_ed00_c9e0_28d2793a6777 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
packages/astro/src/content/data-store.ts lines 60–63
values<T = DataEntry>(collectionName: string): Array<T> {
const collection = this._collections.get(collectionName) ?? new Map();
return [...collection.values()];
}
Domain
Subdomains
Defined In
Calls
Source
Frequently Asked Questions
What does values() do?
values() is a function in the astro codebase, defined in packages/astro/src/content/data-store.ts.
Where is values() defined?
values() is defined in packages/astro/src/content/data-store.ts at line 60.
What does values() call?
values() calls 1 function(s): get.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free