Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Some more adverbial combinations that sort of make sense
And are implemented now
  • Loading branch information
lizmat committed Jun 7, 2013
1 parent 26bc31d commit b6ca88e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions S02-bits.pod
Expand Up @@ -2541,9 +2541,13 @@ These combinations are considered legal and mean the following:
:delete :exists delete, return Bools indicating keys existed
:delete :!exists delete, return Bools indicating keys did not exist
:delete :exists :p delete, return pairs with key/True for key existed
:delete :!exists :p delete, return pairs with key/False for key existed
:delete :exists :!p delete, return pairs with key/Bool whether key existed
:delete :!exists :!p delete, return pairs with key/!Bool whether key existed
:delete :exists :kv delete, return list with key,True for key existed
:delete :!exists :kv delete, return list with key,False for key existed
:delete :exists :!kv delete, return list with key,Bool whether key existed
:delete :!exists :!kv delete, return list with key,!Bool whether key existed

An implementation is free to silently ignore any other combinations or
silently prefer one of the adverbs given above any other.
Expand Down

0 comments on commit b6ca88e

Please sign in to comment.