Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- % dict key tryget -> (any true)|false
- /tryget { 2 copy known {
- get true
- } {
- pop pop false
- } ifelse } bind def
- % dict key trygetnot -> (any false)|true
- /trygetnot { 2 copy known {
- get false
- } {
- pop pop true
- } ifelse } bind def
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement