Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Continue with timotimo++ 's work
  • Loading branch information
lizmat committed Jun 11, 2014
1 parent 243ef3e commit 60aaed2
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/core/Array.pm
Expand Up @@ -88,7 +88,7 @@ class Array { # declared in BOOTSTRAP
}

method delete (\pos) { # is DEPRECATED doesn't work in settings
DEPRECATED("the :delete adverb");
DEPRECATED("the :delete adverb with postcircumfix:<[ ]>");
self.delete_pos(pos);
}
method delete_pos(\pos) {
Expand Down
2 changes: 1 addition & 1 deletion src/core/Bag.pm
Expand Up @@ -23,7 +23,7 @@ my class Bag does Baggy {
}

method delete ($a --> Int) { # is DEPRECATED doesn't work in settings
DEPRECATED("the :delete adverb");
DEPRECATED("the :delete adverb with postcircumfix:<{ }>");
self.delete_key($a);
}
method delete_key($a --> Int) is hidden_from_backtrace {
Expand Down
2 changes: 1 addition & 1 deletion src/core/BagHash.pm
Expand Up @@ -22,7 +22,7 @@ my class BagHash does Baggy {
}

method delete($k) { # is DEPRECATED doesn't work in settings
DEPRECATED("the :delete adverb");
DEPRECATED("the :delete adverb with postcircumfix:<{ }>");
self.delete_key($k);
}
method delete_key($k) {
Expand Down
2 changes: 1 addition & 1 deletion src/core/Baggy.pm
Expand Up @@ -10,7 +10,7 @@ my role Baggy does QuantHash {
method elems(--> Int) { %!elems.elems }
method total(--> Int) { [+] self.values }
method exists ($k --> Bool) { # is DEPRECATED doesn't work in settings
DEPRECATED("the :exists adverb");
DEPRECATED("the :exists adverb with postcircumfix:<{ }>");
self.exists_key($k);
}
method exists_key($k --> Bool) {
Expand Down
4 changes: 2 additions & 2 deletions src/core/EnumMap.pm
Expand Up @@ -29,11 +29,11 @@ my class EnumMap does Associative { # declared in BOOTSTRAP

proto method exists(|) {*}
multi method exists (EnumMap:U:) { # is DEPRECATED doesn't work in settings
DEPRECATED("the :exists adverb");
DEPRECATED("the :exists adverb with postcircumfix:<{ }>");
self.exists_key;
}
multi method exists (EnumMap:D: \key) { # is DEPRECATED doesn't work in settings
DEPRECATED("the :exists adverb");
DEPRECATED("the :exists adverb with postcircumfix:<{ }>");
self.exists_key(key);
}

Expand Down
2 changes: 1 addition & 1 deletion src/core/List.pm
Expand Up @@ -130,7 +130,7 @@ my class List does Positional { # declared in BOOTSTRAP
}

method exists (\pos) { # is DEPRECATED doesn't work in settings
DEPRECATED("the :exists adverb");
DEPRECATED("the :exists adverb with postcircumfix:<[ ]>");
self.exists_pos(pos);
}
method exists_pos(\pos) {
Expand Down
2 changes: 1 addition & 1 deletion src/core/Mix.pm
Expand Up @@ -21,7 +21,7 @@ my class Mix does Mixy {
}

method delete ($a --> Real) { # is DEPRECATED doesn't work in settings
DEPRECATED("the :delete adverb");
DEPRECATED("the :delete adverb with postcircumfix:<{ }>");
self.delete_key($a);
}
method delete_key($a --> Real) is hidden_from_backtrace {
Expand Down
2 changes: 1 addition & 1 deletion src/core/MixHash.pm
Expand Up @@ -19,7 +19,7 @@ my class MixHash does Mixy {
}

method delete($k) { # is DEPRECATED doesn't work in settings
DEPRECATED("the :delete adverb");
DEPRECATED("the :delete adverb with postcircumfix:<{ }>");
self.delete_key($k);
}
method delete_key($k) {
Expand Down
2 changes: 1 addition & 1 deletion src/core/Set.pm
Expand Up @@ -17,7 +17,7 @@ my class Set does Setty {
}

method delete ($a --> Bool) { # is DEPRECATED doesn't work in settings
DEPRECATED("the :delete adverb");
DEPRECATED("the :delete adverb with postcircumfix:<{ }>");
self.delete_key($a);
}
method delete_key($k --> Bool) is hidden_from_backtrace {
Expand Down
2 changes: 1 addition & 1 deletion src/core/SetHash.pm
Expand Up @@ -17,7 +17,7 @@ my class SetHash does Setty {
}

method delete($k) { # is DEPRECATED doesn't work in settings
DEPRECATED("the :delete adverb");
DEPRECATED("the :delete adverb with postcircumfix:<{ }>");
self.delete_key($k);
}
method delete_key($k --> Bool) {
Expand Down
2 changes: 1 addition & 1 deletion src/core/Setty.pm
Expand Up @@ -11,7 +11,7 @@ my role Setty does QuantHash {
method minpairs(--> List) { self.pairs }
method maxpairs(--> List) { self.pairs }
method exists ($k --> Bool) { # is DEPRECATED doesn't work in settings
DEPRECATED("the :exists adverb");
DEPRECATED("the :exists adverb with postcircumfix:<{ }>");
self.exists_key($k);
}
method exists_key($k --> Bool) {
Expand Down

0 comments on commit 60aaed2

Please sign in to comment.