FORM_jll.formMethod
form(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of form.

Example

form() do exe
    run(`$exe $arguments`)
end
Julia 1.3
FORM_jll.formMethod
form(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

An ExecutableProduct wrapper that supports the execution of form. This wrapper is thread-safe and should be preferred on Julia 1.6+.

Example

run(`$(form()) $arguments`)
Julia 1.6
FORM_jll.is_availableFunction
is_available()

Return whether the artifact is available for the current platform.

FORM_jll.parformMethod
parform(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of parform.

Example

parform() do exe
    run(`$exe $arguments`)
end
Julia 1.3
FORM_jll.parformMethod
parform(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

An ExecutableProduct wrapper that supports the execution of parform. This wrapper is thread-safe and should be preferred on Julia 1.6+.

Example

run(`$(parform()) $arguments`)
Julia 1.6
FORM_jll.tformMethod
tform(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of tform.

Example

tform() do exe
    run(`$exe $arguments`)
end
Julia 1.3
FORM_jll.tformMethod
tform(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

An ExecutableProduct wrapper that supports the execution of tform. This wrapper is thread-safe and should be preferred on Julia 1.6+.

Example

run(`$(tform()) $arguments`)
Julia 1.6