Returns whether the end of file has been reached in the specified stream tokenizer object.
Syntax
TT_EOF( streamtokenizer )
streamtokenizer.TT_EOF( )
Parameters
streamtokenizer
|
the stream tokenizer object to use.
|
Returns
boolean
|
true if end of file has been reached.
false if end of file has not been reached.
|
Example
if st.TT_EOF( ) then
break
end
|