Fsih 0.1.1
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Fsih --version 0.1.1
NuGet\Install-Package Fsih -Version 0.1.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Fsih" Version="0.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Fsih --version 0.1.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Fsih, 0.1.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Fsih as a Cake Addin #addin nuget:?package=Fsih&version=0.1.1 // Install Fsih as a Cake Tool #tool nuget:?package=Fsih&version=0.1.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Fsih
Fsih provides you with the h
function, meant to be used in the F# REPL fsi.
It's modeled after the h
function in the Elixir iex REPL.
To use it, just start an fsi session with dotnet fsi
.
Load the package and open the namespace:
#r "nuget: Fsih";;
open Fsih;;
Apply h to any function wrapped in an FSharp quotation to get its documentation:
h <@ fst @>
Description:
Return the first element of a tuple, fst (a,b) = a.
Parameters:
- tuple: The input tuple.
Returns:
The first value.
Examples:
fst ("first", 2) // Evaluates to "first"
Full name: Microsoft.FSharp.Core.Operators.fst
Assembly: FSharp.Core.dll
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- FSHarp.Core (>= 8.0.100)
- Ionide.KeepAChangelog.Tasks (>= 0.1.8)
- Spectre.Console (>= 0.48.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
### Fixed
* * Improve handling of nested xml.