frozenlist
frozenlist copied to clipboard
Readme should say why this is useful
It'll be nice if the readme could answer the question "Why would one want a mutable sequence that can be frozen", i.e. why is this module useful?
@mjpieters do you think you could write something up?
Is it to a avoid the copy that tuple(somelist) would entail?
Also, could freeze() be made to return self and its return type be declared in the stub as Sequence[T]?