github.com/primecitizens/pcz/std@v0.2.1/core/sys/envv_none.go (about) 1 // SPDX-License-Identifier: Apache-2.0 2 // Copyright 2023 The Prime Citizens 3 4 //go:build noos 5 6 package sys 7 8 // for systems without envv 9 10 func (EnvIter) Nth(i int) (env string, ok bool) { return } 11 func (EnvIter) Len() int { return 0 } 12 func (EnvIter) SliceFrom(start int) EnvIter { return 0 } 13 func (EnvIter) Less(i, j int) bool { false } 14 func (EnvIter) Swap(i, j int) {}