Search results

argv0 :: Effect String

The process.argv0 property stores a read-only copy of the original value of argv[0] passed when Node.js starts.

cwd :: Effect (String)

Get the current working directory of the process.

execPath :: Effect (String)

The absolute pathname of the node executable that started the process.

getTitle :: Effect (String)

The process.title property returns the current process title (i.e. returns the current value of ps).

homedir :: Effect String

Returns the string path of the current user's home directory.

hostname :: Effect String

Returns the host name of the operating system as a string.

machine :: Effect String
release :: Effect String

Returns the operating system as a string.

tmpdir :: Effect String

Returns the operating system's default directory for temporary files as a string.

type_ :: Effect String

Returns the operating system name as returned by uname(3). For example, it returns 'Linux' on Linux, 'Darwin' on macOS, and 'Windows_NT' on Windows.

version :: Effect String

Returns a string identifying the kernel version.

getHash :: Effect String

Gets the global location hash.

generatedSessionID :: Effect String
jsColon :: Effect String
currentPath :: Effect String
currentState :: Effect String
genTxnId :: Effect String
name :: Effect String
name :: Effect String
randomColor_ :: Effect String
readClipboard :: Effect String
readSync :: Effect String
timeZoneId :: Effect String

The system's current time zone identifier (e.g. "America/New_York").

exampleTimeZoneId :: Effect Unit
exampleTimeZoneId = do
  tz <- Now.timeZoneId
  Console.log ("System time zone: " <> tz)

System time zone: America/New_York
timeZoneId :: Effect String

The system's default IANA time zone identifier (e.g. "America/New_York").

useIdImpl :: Effect String
genAlphaLowercaseString :: forall m. MonadRec m => MonadGen m => m String

Generates a string using lowercase characters from the basic Latin alphabet.

genAlphaString :: forall m. MonadRec m => MonadGen m => m String

Generates a string using characters from the basic Latin alphabet.

genAlphaUppercaseString :: forall m. MonadRec m => MonadGen m => m String

Generates a string using uppercase characters from the basic Latin alphabet.

genAsciiString :: forall m. MonadRec m => MonadGen m => m String

Generates a string using the ASCII character set, excluding control codes.

genAsciiString' :: forall m. MonadRec m => MonadGen m => m String

Generates a string using the ASCII character set.

genDigitString :: forall m. MonadRec m => MonadGen m => m String

Generates a string made up of numeric digits.

genUnicodeString :: forall m. MonadRec m => MonadGen m => m String

Generates a string using characters from the Unicode basic multilingual plain.

exit :: forall a. Effect a

Cause the process to exit immediately without completing any pending asynchronous operations including I/O operations to process.stdout and process.stderr. Process will exit with the process.exitCode value if it has been set or 0 (i.e. exit successfully) otherwise.

Rather than using this function to exit, one should set process.exitCode and let Node gracefully exit once all pending asynchronous operations have completed. If it is necessary to terminate the Node.js process due to an error condition, throwing an uncaught error and allowing the process to terminate accordingly is safer than calling process.exit().

black :: forall repr. StringExpr repr => repr String

Pure black color

white :: forall repr. StringExpr repr => repr String

Pure white color

getFont :: forall m. MonadCanvasAction m => m String
toDataUrl :: forall m. MonadCanvasAction m => m String

Create a data URL for the current canvas contents

randomEff :: forall a. Random a => Effect a
randomId :: forall m. MonadEffect m => m String
find_ :: forall @args m. CmdArgs "find" args => MonadAff m => m String
gh_ :: forall @args m. CmdArgs "gh" args => MonadAff m => m String
git_ :: forall @args m. CmdArgs "git" args => MonadAff m => m String
grep_ :: forall @args m. CmdArgs "grep" args => MonadAff m => m String
head_ :: forall @args m. CmdArgs "head" args => MonadAff m => m String
html :: forall m. Testable m => m String

Returns HTML representation of the current-context element.

initialRouter :: forall a. Router a => Effect a
jj_ :: forall @args m. CmdArgs "jj" args => MonadAff m => m String
ls_ :: forall @args m. LsArgs args => MonadAff m => m String
nearestEnclosingReactComponentName :: forall m. Testable m => m String
purs_ :: forall @args m. CmdArgs "purs" args => MonadAff m => m String
pursTidy_ :: forall @args m. CmdArgs "purs-tidy" args => MonadAff m => m String
readLine :: forall m eff. MonadAff (readline :: READLINE | eff) m => MonadAsk Interface m => m String

Read a single line from input.

rg_ :: forall @args m. CmdArgs "rg" args => MonadAff m => m String
sed_ :: forall @args m. CmdArgs "sed" args => MonadAff m => m String
sort_ :: forall @args m. CmdArgs "sort" args => MonadAff m => m String
spago_ :: forall @args m. CmdArgs "spago" args => MonadAff m => m String
tagName :: forall m. Testable m => m String

Returns the tag name of the current-context element.

tail_ :: forall @args m. CmdArgs "tail" args => MonadAff m => m String
tee_ :: forall @args m. CmdArgs "tee" args => MonadAff m => m String
text :: forall m. Testable m => m String

Returns full inner text of the current-context element.

uniq_ :: forall @args m. CmdArgs "uniq" args => MonadAff m => m String
wc_ :: forall @args m. CmdArgs "wc" args => MonadAff m => m String
which_ :: forall @args m. CmdArgs "which" args => MonadAff m => m String
bottom :: forall a. Bounded a => a
ff :: forall a. HeytingAlgebra a => a
genericBottom :: forall a rep. Generic a rep => GenericBottom rep => a

A Generic implementation of the bottom member from the Bounded type class.

genericBottom' :: forall a. GenericBottom a => a
genericFF :: forall a rep. Generic a rep => GenericHeytingAlgebra rep => a

A Generic implementation of the ff member from the HeytingAlgebra type class.

genericFF' :: forall a. GenericHeytingAlgebra a => a
genericMempty :: forall a rep. Generic a rep => GenericMonoid rep => a

A Generic implementation of the mempty member from the Monoid type class.

genericMempty' :: forall a. GenericMonoid a => a
genericOne :: forall a rep. Generic a rep => GenericSemiring rep => a

A Generic implementation of the one member from the Semiring type class.

genericOne' :: forall a. GenericSemiring a => a
genericTop :: forall a rep. Generic a rep => GenericTop rep => a

A Generic implementation of the top member from the Bounded type class.

genericTop' :: forall a. GenericTop a => a
genericTT :: forall a rep. Generic a rep => GenericHeytingAlgebra rep => a

A Generic implementation of the tt member from the HeytingAlgebra type class.

genericTT' :: forall a. GenericHeytingAlgebra a => a
genericZero :: forall a rep. Generic a rep => GenericSemiring rep => a

A Generic implementation of the zero member from the Semiring type class.

genericZero' :: forall a. GenericSemiring a => a
mempty :: forall m. Monoid m => m
one :: forall a. Semiring a => a
top :: forall a. Bounded a => a
tt :: forall a. HeytingAlgebra a => a
zero :: forall a. Semiring a => a
empty :: forall f a. Plus f => f a
crash :: forall a. Partial => a

A partial function which crashes on any input with a default message.

none :: forall f a. Unfoldable f => f a

The container with no elements - unfolded with zero iterations. For example:

none == ([] :: Array Unit)
genBoundedEnum :: forall m a. MonadGen m => BoundedEnum a => m a

Create a random generator for a finite enumeration.

conquer :: forall f a. Divisible f => f a
ask :: forall r m. MonadAsk r m => m r
get :: forall m s. MonadState s m => m s

Get the current state.

never :: forall e f m a. MonadBracket e f m => m a
nil :: forall f a. Alignable f => f a
undefined :: forall a. a
all :: forall a. All a => a
auto :: forall a. Auto a => a
baseline :: forall a. Baseline a => a
bottom :: forall a. Bottom a => a
center :: forall a. Center a => a
flexEnd :: forall a. FlexEnd a => a
flexStart :: forall a. FlexStart a => a
hidden :: forall a. Hidden a => a
inherit :: forall a. Inherit a => a
initial :: forall a. Initial a => a
middle :: forall a. Middle a => a
none :: forall a. None a => a
normal :: forall a. Normal a => a
spaceAround :: forall a. SpaceAround a => a
spaceBetween :: forall a. SpaceBetween a => a
stretch :: forall a. Stretch a => a
top :: forall a. Top a => a
unset :: forall a. Unset a => a
visible :: forall a. Visible a => a
mread :: forall s m. ReferM s m => m s
undefined :: forall anything. anything
idm :: forall m. Monoid m => m

Trivial option modifier.

zero :: forall a. Zero a => a
animate_ :: forall html a. Html html => html a

Defines an animation on an SVG element [No Attributes]

animate_ :: forall html a. Html html => html a

Defines an animation on an SVG element [No Attributes]

animateColor_ :: forall html a. Html html => html a

Defines an animated color change for an SVG element [No Attributes]

animateColor_ :: forall html a. Html html => html a

Defines an animated color change for an SVG element [No Attributes]

animateMotion_ :: forall html a. Html html => html a

Defines an animated motion path for an SVG element [No Attributes]

animateMotion_ :: forall html a. Html html => html a

Defines an animated motion path for an SVG element [No Attributes]

animateTransform_ :: forall html a. Html html => html a

Defines an animated transformation on an SVG element [No Attributes]

animateTransform_ :: forall html a. Html html => html a

Defines an animated transformation on an SVG element [No Attributes]

area_ :: forall html a. Html html => html a

Defines an area inside an image map [No Attributes]

area_ :: forall html a. Html html => html a

Defines an area inside an image map [No Attributes]

base_ :: forall html a. Html html => html a

Defines the base URL for all relative URLs in a document [No Attributes]

base_ :: forall html a. Html html => html a

Defines the base URL for all relative URLs in a document [No Attributes]

br_ :: forall html a. Html html => html a

Defines a single line break [No Attributes]

br_ :: forall html a. Html html => html a

Defines a single line break [No Attributes]

circle_ :: forall html a. Html html => html a

Creates a circle element [No Attributes]

circle_ :: forall html a. Html html => html a

Creates a circle element [No Attributes]

col_ :: forall html a. Html html => html a

Defines attributes for table columns [No Attributes]

col_ :: forall html a. Html html => html a

Defines attributes for table columns [No Attributes]

cursor_ :: forall html a. Html html => html a

Defines a cursor for an SVG element [No Attributes]

cursor_ :: forall html a. Html html => html a

Defines a cursor for an SVG element [No Attributes]

ellipse_ :: forall html a. Html html => html a

Creates an ellipse element [No Attributes]

ellipse_ :: forall html a. Html html => html a

Creates an ellipse element [No Attributes]

embed_ :: forall html a. Html html => html a

Defines a container for an external application or interactive content [No Attributes]

embed_ :: forall html a. Html html => html a

Defines a container for an external application or interactive content [No Attributes]

feBlend_ :: forall html a. Html html => html a

Defines a blend mode for two input images in a filter [No Attributes]

feBlend_ :: forall html a. Html html => html a

Defines a blend mode for two input images in a filter [No Attributes]

feColorMatrix_ :: forall html a. Html html => html a

Applies a color transformation to an input image [No Attributes]

feColorMatrix_ :: forall html a. Html html => html a

Applies a color transformation to an input image [No Attributes]

feComponentTransfer_ :: forall html a. Html html => html a

Allows for component-wise remapping of input image components [No Attributes]

feComponentTransfer_ :: forall html a. Html html => html a

Allows for component-wise remapping of input image components [No Attributes]

feComposite_ :: forall html a. Html html => html a

Combines two input images using a composition operation [No Attributes]

feComposite_ :: forall html a. Html html => html a

Combines two input images using a composition operation [No Attributes]

feConvolveMatrix_ :: forall html a. Html html => html a

Applies a matrix convolution filter effect to an input image [No Attributes]

feConvolveMatrix_ :: forall html a. Html html => html a

Applies a matrix convolution filter effect to an input image [No Attributes]

feDiffuseLighting_ :: forall html a. Html html => html a

Creates a lighting effect using the alpha channel as a bump map [No Attributes]

feDiffuseLighting_ :: forall html a. Html html => html a

Creates a lighting effect using the alpha channel as a bump map [No Attributes]

feDisplacementMap_ :: forall html a. Html html => html a

Displaces the pixels in an input image according to a displacement map image [No Attributes]

feDisplacementMap_ :: forall html a. Html html => html a

Displaces the pixels in an input image according to a displacement map image [No Attributes]

feDistantLight_ :: forall html a. Html html => html a

Defines a distant light source for use in a lighting filter effect [No Attributes]

feDistantLight_ :: forall html a. Html html => html a

Defines a distant light source for use in a lighting filter effect [No Attributes]

feFlood_ :: forall html a. Html html => html a

Fills the filter subregion with a solid color [No Attributes]

feFlood_ :: forall html a. Html html => html a

Fills the filter subregion with a solid color [No Attributes]

feFuncA_ :: forall html a. Html html => html a

Defines the alpha transfer function for a component in a filter [No Attributes]

feFuncA_ :: forall html a. Html html => html a

Defines the alpha transfer function for a component in a filter [No Attributes]

feFuncB_ :: forall html a. Html html => html a

Defines the transfer function for a component [No Attributes]

feFuncB_ :: forall html a. Html html => html a

Defines the transfer function for a component [No Attributes]

feFuncG_ :: forall html a. Html html => html a

Defines the transfer function for a component [No Attributes]

feFuncG_ :: forall html a. Html html => html a

Defines the transfer function for a component [No Attributes]

feFuncR_ :: forall html a. Html html => html a

Defines the transfer function for a component [No Attributes]

feFuncR_ :: forall html a. Html html => html a

Defines the transfer function for a component [No Attributes]

feGaussianBlur_ :: forall html a. Html html => html a

Applies a Gaussian blur to an input image [No Attributes]

feGaussianBlur_ :: forall html a. Html html => html a

Applies a Gaussian blur to an input image [No Attributes]

feImage_ :: forall html a. Html html => html a

Inserts an external image into an SVG element [No Attributes]

feImage_ :: forall html a. Html html => html a

Inserts an external image into an SVG element [No Attributes]

feMergeNode_ :: forall html a. Html html => html a

Specifies an input image for use with a feMerge filter [No Attributes]

feMergeNode_ :: forall html a. Html html => html a

Specifies an input image for use with a feMerge filter [No Attributes]

feMorphology_ :: forall html a. Html html => html a

Expands or contracts the shape of an input image [No Attributes]

feMorphology_ :: forall html a. Html html => html a

Expands or contracts the shape of an input image [No Attributes]

feOffset_ :: forall html a. Html html => html a

Offsets the position of an input image [No Attributes]

feOffset_ :: forall html a. Html html => html a

Offsets the position of an input image [No Attributes]

fePointLight_ :: forall html a. Html html => html a

Defines a point light source for use in a lighting filter effect [No Attributes]

fePointLight_ :: forall html a. Html html => html a

Defines a point light source for use in a lighting filter effect [No Attributes]

feSpecularLighting_ :: forall html a. Html html => html a

Creates a specular lighting effect using the alpha channel as a bump map [No Attributes]

feSpecularLighting_ :: forall html a. Html html => html a

Creates a specular lighting effect using the alpha channel as a bump map [No Attributes]

feSpotLight_ :: forall html a. Html html => html a

Defines a spotlight source for use in a lighting filter effect [No Attributes]

feSpotLight_ :: forall html a. Html html => html a

Defines a spotlight source for use in a lighting filter effect [No Attributes]

feTile_ :: forall html a. Html html => html a

Repeats an input image to fill a filter subregion [No Attributes]

feTile_ :: forall html a. Html html => html a

Repeats an input image to fill a filter subregion [No Attributes]

feTurbulence_ :: forall html a. Html html => html a

Generates a Perlin noise or turbulence pattern [No Attributes]

feTurbulence_ :: forall html a. Html html => html a

Generates a Perlin noise or turbulence pattern [No Attributes]

field :: forall @sym repr datumRow a r. IsSymbol sym => Cons sym a r datumRow => DatumExpr repr datumRow => repr a

Access a field from the datum

Define field accessors for your data type:

type MyDataRow = (x :: Number, y :: Number, name :: String)

_x :: forall repr. DatumExpr repr MyDataRow => repr Number
_x = field @"x"

_y :: forall repr. DatumExpr repr MyDataRow => repr Number
_y = field @"y"

_name :: forall repr. DatumExpr repr MyDataRow => repr String
_name = field @"name"
glyphRef_ :: forall html a. Html html => html a

References a glyph in a font [No Attributes]

glyphRef_ :: forall html a. Html html => html a

References a glyph in a font [No Attributes]

hatchpath_ :: forall html a. Html html => html a

Defines the path of a hatching pattern [No Attributes]

hatchpath_ :: forall html a. Html html => html a

Defines the path of a hatching pattern [No Attributes]

hr_ :: forall html a. Html html => html a

Defines a horizontal rule (line) [No Attributes]

hr_ :: forall html a. Html html => html a

Defines a horizontal rule (line) [No Attributes]

image_ :: forall html a. Html html => html a

Inserts an external raster image into an SVG document [No Attributes]

image_ :: forall html a. Html html => html a

Inserts an external raster image into an SVG document [No Attributes]

img_ :: forall html a. Html html => html a

Defines an image [No Attributes]

img_ :: forall html a. Html html => html a

Defines an image [No Attributes]

input_ :: forall html a. Html html => html a

Defines an input control [No Attributes]

input_ :: forall html a. Html html => html a

Defines an input control [No Attributes]

line_ :: forall html a. Html html => html a

Creates a line element [No Attributes]

line_ :: forall html a. Html html => html a

Creates a line element [No Attributes]

link_ :: forall html a. Html html => html a

Defines the relationship between a document and an external resource [No Attributes]

link_ :: forall html a. Html html => html a

Defines the relationship between a document and an external resource [No Attributes]

meta_ :: forall html a. Html html => html a

Defines metadata about an HTML document [No Attributes]

meta_ :: forall html a. Html html => html a

Defines metadata about an HTML document [No Attributes]

metadata_ :: forall html a. Html html => html a

The metadata element provides a container for storing non-visual data. [No Attributes]

metadata_ :: forall html a. Html html => html a

The metadata element provides a container for storing non-visual data. [No Attributes]

missingGlyph_ :: forall html a. Html html => html a

The missing-glyph element provides a fallback for glyphs that are not available in a font. [No Attributes]

missingGlyph_ :: forall html a. Html html => html a

The missing-glyph element provides a fallback for glyphs that are not available in a font. [No Attributes]

mzeroL :: forall x r. LeftModule x r => x
mzeroR :: forall x r. RightModule x r => x
noHtml :: forall html msg. Html html => html msg
param_ :: forall html a. Html html => html a

Defines a parameter for an object [No Attributes]

param_ :: forall html a. Html html => html a

Defines a parameter for an object [No Attributes]

path_ :: forall html a. Html html => html a

The path element defines a path to be drawn. [No Attributes]

path_ :: forall html a. Html html => html a

The path element defines a path to be drawn. [No Attributes]

polygon_ :: forall html a. Html html => html a

The polygon element defines a closed shape consisting of a series of connected straight line segments. [No Attributes]

polygon_ :: forall html a. Html html => html a

The polygon element defines a closed shape consisting of a series of connected straight line segments. [No Attributes]

polyline_ :: forall html a. Html html => html a

The polyline element defines an open shape consisting of a series of connected straight line segments. [No Attributes]

polyline_ :: forall html a. Html html => html a

The polyline element defines an open shape consisting of a series of connected straight line segments. [No Attributes]

rect_ :: forall html a. Html html => html a

The rect element defines a rectangle to be drawn. [No Attributes]

rect_ :: forall html a. Html html => html a

The rect element defines a rectangle to be drawn. [No Attributes]

script_ :: forall html a. Html html => html a

Defines a client-side script [No Attributes]

script_ :: forall html a. Html html => html a

Defines a client-side script [No Attributes]

set_ :: forall html a. Html html => html a

The set element provides a way to animate an attribute to a given value. [No Attributes]

set_ :: forall html a. Html html => html a

The set element provides a way to animate an attribute to a given value. [No Attributes]

source_ :: forall html a. Html html => html a

Defines multiple media resources for media elements (<video> and <audio>) [No Attributes]

source_ :: forall html a. Html html => html a

Defines multiple media resources for media elements (<video> and <audio>) [No Attributes]

stop_ :: forall html a. Html html => html a

The stop element defines a color or gradient stop in a gradient. [No Attributes]

stop_ :: forall html a. Html html => html a

The stop element defines a color or gradient stop in a gradient. [No Attributes]

track_ :: forall html a. Html html => html a

Defines text tracks for media elements (<video> and <audio>) [No Attributes]

track_ :: forall html a. Html html => html a

Defines text tracks for media elements (<video> and <audio>) [No Attributes]

tref_ :: forall html a. Html html => html a

The tref element provides a way to reference a portion of text in another element. [No Attributes]

tref_ :: forall html a. Html html => html a

The tref element provides a way to reference a portion of text in another element. [No Attributes]

vkern_ :: forall html a. Html html => html a

Defines vertical kerning for a pair of glyphs in a font. [No Attributes]

vkern_ :: forall html a. Html html => html a

Defines vertical kerning for a pair of glyphs in a font. [No Attributes]

wbr_ :: forall html a. Html html => html a

Defines a possible line-break [No Attributes]

wbr_ :: forall html a. Html html => html a

Defines a possible line-break [No Attributes]

def :: forall a. Default a => a
animationEvent :: forall a. a
bottom :: forall a. BoundedJoinSemilattice a => a
bProxy :: forall f b. BProxying f b => f b
clipboardEvent :: forall a. a
compositionEvent :: forall a. a
dragEvent :: forall a. a
empty :: forall l. MList l => l

The /empty/ heterogeneous list of type @l@. Of course, @empty

event :: forall a. a
focusEvent :: forall a. a
hashChangeEvent :: forall a. a

No further results.