diff options
author | Hans Bolinder <[email protected]> | 2011-05-13 14:12:36 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2011-05-13 14:12:36 +0200 |
commit | 6f6f9e1a6fd96efd86673855cbdcd316c445c753 (patch) | |
tree | c97db2bb992a930fa6056002ed424b70f333ab01 /lib/stdlib/src | |
parent | 0ccc57b1e3772deaf5650077808a38a52b1133b9 (diff) | |
parent | b8f38a71e2c7768b6af6fd877f9bf5ceb0dbbaef (diff) | |
download | otp-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')
-rw-r--r-- | lib/stdlib/src/dets.erl | 2 |
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'. |