MCPcopy Create free account
hub / github.com/dprint/jsonc-parser / Array

Class Array

src/ast.rs:398–401  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

396/// Represents an array that may contain elements (ex. `[]`, `[5, 6]`).
397#[derive(Debug, PartialEq, Clone)]
398pub struct Array<'a> {
399 pub range: Range,
400 pub elements: Vec<Value<'a>>,
401}
402
403/// Kind of JSONC comment.
404#[derive(Debug, PartialEq, Clone)]

Callers 15

parse_arrayFunction · 0.85
it_should_parse_objectFunction · 0.85
parse_valueFunction · 0.85
fromMethod · 0.85
from_containerMethod · 0.85
array_value_or_createMethod · 0.85
array_value_or_setMethod · 0.85
insert_or_appendMethod · 0.85
to_serde_valueMethod · 0.85
build_arrayMethod · 0.85

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…