blob: 307e5cbf1be850fb6038d82268a734c924142d11 [file] [log] [blame]
Marcel van Lohuizenb5dc1922018-12-11 11:49:57 +01001// Copyright 2018 The CUE Authors
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
Marcel van Lohuizenea40e662018-12-11 18:07:49 +010015// Package pkg define CUE standard packages.
Marcel van Lohuizenb5dc1922018-12-11 11:49:57 +010016//
Marcel van Lohuizenea40e662018-12-11 18:07:49 +010017// Many of the standard packages are modeled after and generated from the Go
18// core packages. The types, values, and functions are defined as their Go
19// equivalence and mapped to CUE types.
Marcel van Lohuizenb5dc1922018-12-11 11:49:57 +010020//
21// Beware that some packages are defined in lesser-precision types than are
22// typically used in CUE and thus may lead to loss of precision.
23//
Marcel van Lohuizenea40e662018-12-11 18:07:49 +010024// All packages except those defined in the tool subdirectory are hermetic,
25// that is depending only on a known set of inputs, and therefore can guarantee
26// reproducible results. That is:
Marcel van Lohuizenb5dc1922018-12-11 11:49:57 +010027//
28// - no reading of files contents
29// - no querying of the file system of any kind
30// - no communication on the network
31// - no information about the type of environment
32// - only reproduceable random generators
33//
34// Hermetic configurations allow for fast and advanced analysis that otherwise
Marcel van Lohuizenea40e662018-12-11 18:07:49 +010035// would not be possible or practical. The cue "cmd" command can be used to mix
36// in non-hermetic influences into configurations by using packages defined
37// in the tool subdirectory.
Marcel van Lohuizenb5dc1922018-12-11 11:49:57 +010038package pkg