lean4-htt/library/init/data/array
Leonardo de Moura 452d5107ac chore(library/init/data/array): naming convention
The array read and write operations are now called:

- "Comfortable" version (with runtime bound checks):
  `Array.get` and `Array.set` like OCaml.
   It is also consistent with `Ref.get` and `Ref.put`,
   and `get` and `set` for `MonadState`.

- `Fin` version (without runtime bound checks):
  `Array.index` and `Array.update` like in F*.

- `USize` version (without runtime bound checks and unboxing):
  `Array.idx` and `Array.updt`.

cc @kha
2019-03-21 18:03:29 -07:00
..
basic.lean chore(library/init/data/array): naming convention 2019-03-21 18:03:29 -07:00
default.lean chore(library): use lowercase in imports 2019-03-21 15:06:44 -07:00