Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
E
 e, ext.math
 Elements, ext. fbext_Array((T_)(Allocator_))
 Empty
 encode_entities, ext.xml
 encode_utf8, ext.xml
 End_
 Enumerations
 eof, File
FBEXT_EPSILON, ext.math
 Equal
fbextPP_Equal
FBEXT_PP_EQUAL
 EqualityComparable
 Erase
 Error Codes, ext
 euler, ext.math
 Examples
 EXE size
 execute, Statement
 Explode
fbextPP_ExprIf
fbextPP_ExprIif
 ext
const e as double = 2.718281828459045
declare const function Empty ( ) as bool
Determines if the array contains elements or not.
declare const function Empty ( ) as ext.bool
Returns ext.true if the queue contains zero elements, or ext.false otherwise.
declare const function Empty ( ) as ext.bool
Returns ext.true if the stack contains zero elements, or ext.false otherwise.
declare const function Empty ( ) as bool
Determines if the list contains no elements.
declare const function Empty ( ) as bool
Returns ext.true if empty, ext.false otherwise
declare function encode_entities(byref text as const string) as string
Encodes special characters in a string to their proper form.
declare function encode_utf8(byval u as integer) as zstring ptr
Encodes a UTF-8 character to its string representation.
declare function End_ () as typeof(Iterator)
Gets an iterator to the element at the back of the array.
declare function End_ () as typeof(Iterator)
Gets an iterator to one-past the last element in the list.
declare function eof() as ext.bool
Tells whether or not the end of the file has been reached.
declare function Equal overload (
   byval first1 as fbext_TypeName(T_) ptr,
   byval last as fbext_TypeName(T_) ptr,
   byval first2 as fbext_TypeName(T_) ptr
) as bool
Tests two ranges of elements [first, last) and beginning at first2 for equivalence.
expands to `1` if a and b compare equal, otherwise it expands to `0`.
# define FBEXT_PP_EQUAL(a,
b) fbextPP_Equal(a, b)
is deprecated.
Specifies that two objects of the type can be compared for equality with operator =.
declare function Erase (byval position as typeof(Iterator)) as typeof(Iterator)
Removes an element from the array.
declare function Erase (byval position as typeof(Iterator)) as typeof(Iterator)
Removes an element from the list.
Allows you easy access to every error code FreeBASIC can produce.
const euler as double = 0.333177923807718674318
declare function execute( ) as integer
Executes the prepared statement on the database and steps through the resulting rows (if any).
declare function Explode(byref subject as const string,
byref delimit as const string,
res() as string) as integer
Splits a string into an array.
declare function Explode (byref delimit as const string,
res() as string) as integer
Splits the string into an array.
# define fbextPP_ExprIf(cond,
expr) fbextPP_ExprIif(FBEXT_PP_BOOL(cond), expr)
# define fbextPP_ExprIif(bit,
expr) _fbextPP_ExprIif_I(bit, expr)
Contains global constants and enums.