actonlang / acton

The Acton Programming Language
https://www.acton-lang.org/
BSD 3-Clause "New" or "Revised" License
80 stars 7 forks source link

Review lists #1132

Open plajjan opened 1 year ago

plajjan commented 1 year ago

From Python dir([]), assuming we support the same:

To implement?

plajjan commented 1 year ago

Do we need to test lists containing different things, like list[str] and repeat the tests for list[int] etc?

plajjan commented 1 year ago

@nordlander @sydow can you guys comment on the seemingly unimplemented methods. Can we support these?:

sydow commented 1 year ago

clear, extend and pop implemented in #1206. count, index and remove requires that element type A implements Eq sort requires that it implements Ord

plajjan commented 1 year ago

Thanks @sydow. I've added clear, extend & pop to the acton-by-example docs too: #1209