Fix Array.cry comment. (#748)

This commit is contained in:
Andrei Stefanescu 2020-06-02 20:26:49 -07:00 committed by GitHub
parent c1bdd77ff0
commit 2ff4d4c031
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 23 additions and 2 deletions

View File

@ -3,8 +3,6 @@
* Distributed under the terms of the BSD3 license (see LICENSE file)
*/
/** The type and operations of the theory of arrays. */
module Array where
primitive type Array : * -> * -> *

View File

@ -0,0 +1,3 @@
:module Array
:browse Array

View File

@ -0,0 +1,20 @@
Loading module Cryptol
Loading module Array
Primitive Types
===============
Public
------
Array : * -> * -> *
Symbols
=======
Public
------
arrayConstant : {a, b} b -> Array a b
arrayLookup : {a, b} Array a b -> a -> b
arrayUpdate : {a, b} Array a b -> a -> b -> Array a b