Attributes
- Companion
- class
- Graph
-
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
CallbackTo.type
Members list
Type members
Classlikes
Attributes
- Supertypes
-
class AnyValtrait Matchableclass Any
Prevents scalac
discarding the result of a map function when the final result is Callback
.
Prevents scalac
discarding the result of a map function when the final result is Callback
.
Attributes
- Since
-
0.11.0
- Supertypes
-
class Objecttrait Matchableclass Any
Value members
Concrete methods
Displays a modal dialog with a message and two buttons, OK and Cancel.
Displays a modal dialog with a message and two buttons, OK and Cancel.
Value parameters
- message
-
a string to be displayed in the dialog.
Attributes
- Returns
-
A boolean value indicating whether OK or Cancel was selected (true means OK).
Wraps a Future so that it is repeatable, and so that its inner callback is run when the future completes.
Wraps a Future so that it is repeatable, and so that its inner callback is run when the future completes.
WARNING: Futures are scheduled to run as soon as they're created. Ensure that the argument you provide creates a new Future; don't reference an existing one.
Attributes
Callback that isn't created until the first time it is used, after which it is reused.
Callback that isn't created until the first time it is used, after which it is reused.
Attributes
Displays a dialog with an optional message prompting the user to input some text.
Displays a dialog with an optional message prompting the user to input some text.
Attributes
- Returns
-
Some string comprising the text entered by the user, or None.
Displays a dialog with an optional message prompting the user to input some text.
Displays a dialog with an optional message prompting the user to input some text.
Value parameters
- message
-
a string of text to display to the user. This parameter is optional and can be omitted if there is nothing to show in the prompt window.
Attributes
- Returns
-
Some string comprising the text entered by the user, or None.
Displays a dialog with an optional message prompting the user to input some text.
Displays a dialog with an optional message prompting the user to input some text.
Value parameters
- default
-
a string containing the default value displayed in the text input field. It is an optional parameter. Note that in Internet Explorer 7 and 8, if you do not provide this parameter, the string "undefined" is the default value.
- message
-
a string of text to display to the user. This parameter is optional and can be omitted if there is nothing to show in the prompt window.
Attributes
- Returns
-
Some string comprising the text entered by the user, or None.
Sequence stdlib T over CallbackTo. Co-sequence CallbackTo over stdlib T.
Sequence stdlib T over CallbackTo. Co-sequence CallbackTo over stdlib T.
Attributes
Sequence Option over CallbackTo. Co-sequence CallbackTo over Option.
Sequence Option over CallbackTo. Co-sequence CallbackTo over Option.
Attributes
Callback that is recreated each time it is used.
Callback that is recreated each time it is used.
Attributes
Tail-recursive callback. Uses constant stack space.
Tail-recursive callback. Uses constant stack space.
Based on Phil Freeman's work on stack safety in PureScript, described in Stack Safety for Free.
Attributes
Traverse stdlib T over CallbackTo. Distribute CallbackTo over stdlib T.
Traverse stdlib T over CallbackTo. Distribute CallbackTo over stdlib T.
Attributes
Traverse Option over CallbackTo. Distribute CallbackTo over Option.
Traverse Option over CallbackTo. Distribute CallbackTo over Option.
Attributes
When executed, opens a new window (tab) to a given URL.
When executed, opens a new window (tab) to a given URL.
Value parameters
- focus
-
Whether or not to focus the new window.
- noopener
-
See https://developers.google.com/web/tools/lighthouse/audits/noopener
Attributes
Deprecated methods
Serves as a temporary placeholder for a callback until you supply a real implementation.
Serves as a temporary placeholder for a callback until you supply a real implementation.
Unlike ???
this doesn't crash, it just prints a warning to the console.
Also it's not really deprecated; that's just so you get a compiler warning as a reminder.
Attributes
- Deprecated
- true
Serves as a temporary placeholder for a callback until you supply a real implementation.
Serves as a temporary placeholder for a callback until you supply a real implementation.
Unlike ???
this doesn't crash, it just prints a warning to the console.
Also it's not really deprecated; that's just so you get a compiler warning as a reminder.
Attributes
- Deprecated
- true
Callback that is recreated each time it is used.
Callback that is recreated each time it is used.
https://en.wikipedia.org/wiki/Evaluation_strategy#Call_by_name
Attributes
- Deprecated
- true
Concrete fields
Extensions
Extensions
Function distribution. See CallbackTo.liftTraverse(f).id
for the dual.
Function distribution. See CallbackTo.liftTraverse(f).id
for the dual.
Attributes
Deprecated extensions
Negates the callback result (so long as it's boolean).
Negates the callback result (so long as it's boolean).
Attributes
- Deprecated
- true
Creates a new callback that returns true
when both this and the given callback return true
.
Creates a new callback that returns true
when both this and the given callback return true
.
Attributes
Returns a CallbackOption that requires the boolean value therein to be true.
Negates the callback result (so long as it's boolean).
Negates the callback result (so long as it's boolean).
Attributes
Creates a new callback that returns true
when either this or the given callback return true
.
Creates a new callback that returns true
when either this or the given callback return true
.