src.elv.sh@v0.21.0-dev.0.20240515223629-06979efb9a2a/pkg/eval/vals/pipe.go (about) 1 package vals 2 3 import ( 4 "os" 5 ) 6 7 // Pipe wraps a pair of [*os.File] that are the two ends of a pipe. 8 type Pipe struct{ R, W *os.File } 9 10 func (Pipe) IsStructMap() {}