⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hash-key-sig.sml

📁 这是我们参加06年全国开源软件的竞赛作品
💻 SML
字号:
(* hash-key-sig.sml * * COPYRIGHT (c) 1993 by AT&T Bell Laboratories.  See COPYRIGHT file for details. * * Abstract hash table keys.  This is the argument signature for the hash table * functor (see hash-table-sig.sml and hash-table.sml). * * AUTHOR:  John Reppy *	    AT&T Bell Laboratories *	    Murray Hill, NJ 07974 *	    jhr@research.att.com *)signature HASH_KEY =  sig    type hash_key    val hashVal : hash_key -> word	(* Compute an unsigned integer key from a hash key. *)    val sameKey : (hash_key * hash_key) -> bool	(* Return true if two keys are the same.	 * NOTE: if sameKey(h1, h2), then it must be the	 * case that (hashVal h1 = hashVal h2).	 *)  end (* HASH_KEY *)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -