From d91b6704a48370983e81ddbacce5c39aea7a304a Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Mon, 16 Jan 2023 21:11:12 +1100 Subject: [PATCH] no _index --- quick-start-guide.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/quick-start-guide.md b/quick-start-guide.md index 85b9050..2dc5d20 100644 --- a/quick-start-guide.md +++ b/quick-start-guide.md @@ -98,7 +98,6 @@ array.printMe(); There are several underscore functions provided by default: ``` -_index(self, first, second, third, assign, op) //don't use this _set(self, key, value) //array, dictionary _get(self, key) //array, dictionary _push(self, value) //array @@ -107,8 +106,6 @@ _length(self) //array, dictionary, string _clear(self) //array, dictionary ``` -The `_index` function is simply used for slice notation, so it's recommended that you don't use it or overwrite it. - ## Slice Notation When indexing a compound value, you can use slice notation to manipulate it's elements: