WriteArray() (type)Write a data type, one array element at a time
This is a function you would write when programming a Murex data-type.
It’s called by builtins to allow them to write data structures one array element at a time.
The purpose of this function is to allow builtins to support sequential writes (where possible) and also create a standard interface for builtins, thus allowing them to be data-type agnostic.
WriteArray() should return a struct that
satisfies the following any:
package stdio
// ArrayWriter is a simple interface types can adopt for buffered writes of formatted arrays in structured types (eg JSON)
type ArrayWriter interface {
Write([]byte) error
WriteString(string) error
Close() error
}Registering your WriteArray()
// To avoid confusion, this should only happen inside func init()
stdio.RegisterWriteArray(/* your type name */, /* your writeArray func */)Example WriteArray() function:
package string
import (
"github.com/lmorg/murex/lang/stdio"
)
type arrayWriter struct {
writer stdio.Io
}
func newArrayWriter(writer stdio.Io) (stdio.ArrayWriter, error) {
w := &arrayWriter{writer: writer}
return w, nil
}
func (w *arrayWriter) Write(b []byte) error {
_, err := w.writer.Writeln(b)
return err
}
func (w *arrayWriter) WriteString(s string) error {
_, err := w.writer.Writeln([]byte(s))
return err
}
func (w *arrayWriter) Close() error { return nil }Since not all data types will be stream-able (for example
json), some types may need to cache the array and then to
write it once the array writer has been closed.
package json
import (
"github.com/lmorg/murex/lang/stdio"
"github.com/lmorg/murex/utils/json"
)
type arrayWriter struct {
array []string
writer stdio.Io
}
func newArrayWriter(writer stdio.Io) (stdio.ArrayWriter, error) {
w := &arrayWriter{writer: writer}
return w, nil
}
func (w *arrayWriter) Write(b []byte) error {
w.array = append(w.array, string(b))
return nil
}
func (w *arrayWriter) WriteString(s string) error {
w.array = append(w.array, s)
return nil
}
func (w *arrayWriter) Close() error {
b, err := json.Marshal(w.array, w.writer.IsTTY())
if err != nil {
return err
}
_, err = w.writer.Write(b)
return err
}ReadArray()
(type): Read from a data type one array element at a timeReadArrayWithType()
(type): Read from a data type one array element at a time and return
the elements contents and data typeReadIndex()
(type): Data type handler for the index, [,
builtinReadMap() (type):
Treat data type as a key/value structure and read its contentsReadNotIndex()
(type): Data type handler for the bang-prefixed index,
![, builtinThis document was generated from lang/stdio/interface_doc.yaml.
This site's content is rebuilt automatically from murex's source code after each merge to the master branch. Downloadable murex binaries are also built with the website.
Last built on Fri Oct 24 08:59:31 UTC 2025 against commit e59ab49e59ab49e1628d8546d2ad8ce5eb1150445f6a940.
Current version is 7.1.4143 (unknown) which has been verified against tests cases.