mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-05 03:17:50 +08:00
96752afa4d
Struct map is a mechanism to let Go code expose simple structs to Elvish code. The difference between struct maps and maps is convenience for Go code; they also have different performance characteristics, but since struct maps are always quite small, the difference is not meaningful for Elvish's use cases. As a result, there is no good reason that Elvish code needs to be aware of the difference between struct maps and normal maps. Making them indistinguishable to Elvish code simplifies the language. This commit does the following: - Change Equal, Hash, Kind and Repr to treat struct maps like maps. - Change Assoc and Dissoc to "promote" struct maps to maps. - Remove the custom Repr method of parse.Source. - Update documentation to reflect this change. |
||
---|---|---|
.. | ||
buildinfo | ||
cli | ||
daemon | ||
diag | ||
diff | ||
edit | ||
elvdoc | ||
env | ||
errutil | ||
eval | ||
fsutil | ||
getopt | ||
glob | ||
logutil | ||
lsp | ||
md | ||
mods | ||
must | ||
parse | ||
persistent | ||
pprof | ||
prog | ||
rpc | ||
shell | ||
store | ||
strutil | ||
sys | ||
testutil | ||
tt | ||
ui | ||
wcwidth |