elvish/pkg/eval/vals/pipe.go
Qi Xiao 6992c0b693 Make pseudomaps print like [^tag &key=value].
Also make file:pipe output a struct map rather than a pseudomap.
2023-07-17 23:41:43 +01:00

11 lines
164 B
Go

package vals
import (
"os"
)
// Pipe wraps a pair of [*os.File] that are the two ends of a pipe.
type Pipe struct{ R, W *os.File }
func (Pipe) IsStructMap() {}