Daylight v4.9 Release Date: 1 February 2008 Namedt_delete - delete an object from a compound objectGeneric Prototypedt_delete(dt_Handle) => dt_BooleanC Prototype#include "dt_smiles.h"dt_Boolean dt_delete(dt_Handle sequence) FORTRAN Prototypeinclude 'dt_f_smiles.inc'logical dt_f_delete(sequence) integer*4 sequence DescriptionDeletes the current object from the sequence. Makes the object preceding the deleted one be the current object (see dt_next(3)). dt_next(3) will return the same object as it would have before the deletion occurred.It is an error to invoke this function when the current object is not a real object. You cannot delete from an empty sequence, or when dt_atstart(3) would return TRUE. Return ValueReturns the success (TRUE) or failure (FALSE) of the operation.Related Topicsdt_alloc_seq(3) dt_atend(3) dt_atstart(3) dt_count(3) dt_next(3) dt_reset(3) dt_append(3) dt_insert(3) dt_seqsort(3) dt_toend(3) |