built-in method
question_prompt_stream/4
Description
question_prompt_stream(Kind, Component, Prompt, Stream)
User-defined hook method for specifying the default prompt and input stream for asking a question for a given kind and component. This method is declared in the logtalk built-in object as a public, multifile, and dynamic predicate.
Modes and number of proofs
question_prompt_stream(?nonvar, ?nonvar, ?atom, ?stream_or_alias) - zero_or_more
Errors
(none)
Examples
:- multifile(logtalk::question_prompt_stream/4).
:- dynamic(logtalk::question_prompt_stream/4).
logtalk::question_prompt_stream(question, debugger, ' > ', user_input).