Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Define Data Collections used in the spec #1102

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions spec/Appendix A -- Notation Conventions.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,3 +216,38 @@ Fibonacci(number):
Note: Algorithms described in this document are written to be easy to
understand. Implementers are encouraged to include equivalent but optimized
implementations.

## Data Collections

A data collection is a finite, iterable aggregation of elements whose iteration
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why 'aggregation'?

  • collection: tautology - "a data collection is a collection"
  • set: we define "set" below, so using set here would introduce ambiguity
  • group: evokes group theory, best avoided
  • assembly: technically correct, but feels unnatural

order is not necessarily stable. This specification describes the semantic
properties of data collections using types like "list", "set" and "map". These
describe observable data collections, such as the result of applying a grammar
and the inputs and outputs of algorithms. They also describe unobservable data
collections such as temporary data internal to an algorithm. Each data
collection type defines the operations available, and whether values are unique
or ordered.

**List**

:: The term _list_ describes a sequence of zero or more values, which may
contain duplicates. Currently, all lists in this specification are ordered, but
for clarity the term "ordered list" may be used when an order is semantically
important.

**Set**

:: The term _set_ describes a collection of zero or more values, which may not
contain duplicates. Each value is considered a "member" of the set. A set is
unordered unless explicitly stated otherwise (as an "ordered set"). For clarity,
the term "unordered set" may be used when the lack of an order is semantically
important.

**Map**

:: The term _map_ describes a collection where each element is a pair (called an
"entry") consisting of a key and a value. Keys are unique: no two entries with
the same key may exist in the same map, but values may repeat. A map is
unordered unless explicitly stated otherwise (as an "ordered map"). For clarity,
the term "unordered map" may be used when the lack of an order is semantically
important.
8 changes: 6 additions & 2 deletions spec/GraphQL.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,14 @@ Conformance requirements expressed as algorithms can be fulfilled by an
implementation of this specification in any way as long as the perceived result
is equivalent. Algorithms described in this document are written to be easy to
understand. Implementers are encouraged to include equivalent but optimized
implementations.
implementations. Similarly, data collections such as _list_, _set_ and _map_
also introduce conformance requirements. Implementers are free to use
alternative data collections as long as the perceived result remains equivalent.

See [Appendix A](#sec-Appendix-Notation-Conventions) for more details about the
definition of algorithms and other notational conventions used in this document.
definition of algorithms and other notational conventions used in this document,
and [Appendix A: Data Collections](#sec-Data-Collections) for specifics of data
collections and their ordering.

**Non-Normative Portions**

Expand Down