Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 503 Bytes

change_at.md

File metadata and controls

26 lines (20 loc) · 503 Bytes
layout language permalink command related_commands
api-command
Python
api/python/change_at/
change_at
insert_at splice_at delete_at
insert_at/
splice_at/
delete_at

Command syntax

{% apibody %} array.change_at(offset, value) → array {% endapibody %}

Description

Change a value in an array at a given index. Returns the modified array.

Example: Bruce Banner hulks out.

r.expr(["Iron Man", "Bruce", "Spider-Man"]).change_at(1, "Hulk").run(conn)