aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2020-11-13 08:45:23 +0100
committerPatrick Spek <p.spek@tyil.nl>2020-11-13 08:45:23 +0100
commit86cc162923350599eb513aa0ae29d9e748b6ff78 (patch)
treef1e8416b4c42fee7ae6d2fdbbc8a199aaf8b7395 /README.md
parent5849c96fa6a058a8e3d79a17e0de845ab4d03fc8 (diff)
Rewrite README
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 0 insertions, 12 deletions
diff --git a/README.md b/README.md
deleted file mode 100644
index a83e503..0000000
--- a/README.md
+++ /dev/null
@@ -1,12 +0,0 @@
-[![Build Status](https://travis-ci.org/scriptkitties/p6-Hash-Merge.svg?branch=master)](https://travis-ci.org/scriptkitties/p6-Hash-Merge)
-
-### method merge
-
-```perl6
-method merge(
- %b,
- Bool:D :$no-append-array = Bool::False
-) returns Mu
-```
-
-Merges a second hash into the hash the method is called on. Hash given as the argument is not modified. Traverses the full tree, replacing items in the original hash with the hash given in the argument. Does not replace positional elements by default, and instead appends the items from the supplied hash's array to the original hash's array. The object type of positionals is not retained and instead becomes an Array type. Use :no-append-array to replace arrays and positionals instead, which will also retain the original type and not convert to an Array