aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/src/dets.erl
diff options
context:
space:
mode:
authorHans Bolinder <[email protected]>2011-05-13 14:12:36 +0200
committerHans Bolinder <[email protected]>2011-05-13 14:12:36 +0200
commit6f6f9e1a6fd96efd86673855cbdcd316c445c753 (patch)
treec97db2bb992a930fa6056002ed424b70f333ab01 /lib/stdlib/src/dets.erl
parent0ccc57b1e3772deaf5650077808a38a52b1133b9 (diff)
parentb8f38a71e2c7768b6af6fd877f9bf5ceb0dbbaef (diff)
downloadotp-6f6f9e1a6fd96efd86673855cbdcd316c445c753.tar.gz
otp-6f6f9e1a6fd96efd86673855cbdcd316c445c753.tar.bz2
otp-6f6f9e1a6fd96efd86673855cbdcd316c445c753.zip
Merge branch 'hb/stdlib/dets_tablenames/OTP-9282' into dev
* hb/stdlib/dets_tablenames/OTP-9282: Allow Dets tablenames to be arbitrary terms Conflicts: lib/stdlib/src/dets.erl
Diffstat (limited to 'lib/stdlib/src/dets.erl')
-rw-r--r--lib/stdlib/src/dets.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/dets.erl b/lib/stdlib/src/dets.erl
index 1b81862940..671b5a9dd4 100644
--- a/lib/stdlib/src/dets.erl
+++ b/lib/stdlib/src/dets.erl
@@ -186,7 +186,7 @@
-opaque object_cont() :: #dets_cont{}.
-type pattern() :: atom() | tuple().
-opaque select_cont() :: #dets_cont{}.
--type tab_name() :: atom() | reference().
+-type tab_name() :: term().
-type type() :: 'bag' | 'duplicate_bag' | 'set'.
-type version() :: 8 | 9 | 'default'.