System.JSON.TJSONArray.Pop

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function Pop: TJSONValue; inline;

C++

TJSONValue* __fastcall Pop();

Properties

Type Visibility Source Unit Parent
function protected
System.JSON.pas
System.JSON.hpp
System.JSON TJSONArray

Description

Removes the first element from the JSON array.

Call Pop to remove the first element from the JSON array.

Note: Pop makes no checks prior to removing the first element in the JSON array. It is the caller responsibility to check if there is at least one element in the array.

See Also