delete

Syntax delete (address)

Params address is an address value that points to the object in the database that you wish to remove.

Action Deletes the object stored at address.

Returns True

Examples delete (@examples.flag)

   » true

An object actually existed at this location in the database.

delete ("examples.flag")

   » true

Formatted as a string, Frontier coerces the string to a database address.

Errors Supplying an address which Frontier cannot coerce into a valid address form produces an error.

Attempting to delete an object that has not been defined results in an error.

Discuss