method from-list
Documentation for method from-list
assembled from the following types:
class Supply
From Supply
(Supply) method from-list
method from-list(Supply: + --> Supply)
Creates an on-demand supply from the values passed to this method.
my = Supply.from-list(1, 2, 3);.tap(); # OUTPUT: «123»