Raise not-implemented error. :raises NotImplementedError: use ``sl.add(value)`` instead
(self, index, value)
| 1308 | |
| 1309 | |
| 1310 | def insert(self, index, value): |
| 1311 | """Raise not-implemented error. |
| 1312 | |
| 1313 | :raises NotImplementedError: use ``sl.add(value)`` instead |
| 1314 | |
| 1315 | """ |
| 1316 | raise NotImplementedError('use ``sl.add(value)`` instead') |
| 1317 | |
| 1318 | |
| 1319 | def pop(self, index=-1): |