github.com/primecitizens/pcz/std@v0.2.1/core/sys/export_test.go (about) 1 // SPDX-License-Identifier: Apache-2.0 2 // Copyright 2023 The Prime Citizens 3 4 package sys_test 5 6 import ( 7 "github.com/primecitizens/pcz/std/algo/sort" 8 "github.com/primecitizens/pcz/std/core/iter" 9 "github.com/primecitizens/pcz/std/core/sys" 10 ) 11 12 var ( 13 _ iter.Interface[string, sys.ArgIter] = sys.ArgIter(0) 14 _ iter.Interface[string, sys.EnvIter] = sys.EnvIter(0) 15 _ iter.Interface[sys.Auxv, sys.AuxvIter] = sys.AuxvIter(0) 16 17 _ sort.Interface = sys.EnvIter(0) 18 ) 19 20 var ( 21 ExecutablePath func() string = sys.ExecutablePath 22 )