Fsih 0.2.0
See the version list below for details.
dotnet add package Fsih --version 0.2.0
NuGet\Install-Package Fsih -Version 0.2.0
<PackageReference Include="Fsih" Version="0.2.0" />
paket add Fsih --version 0.2.0
#r "nuget: Fsih, 0.2.0"
// Install Fsih as a Cake Addin #addin nuget:?package=Fsih&version=0.2.0 // Install Fsih as a Cake Tool #tool nuget:?package=Fsih&version=0.2.0
Fsih
Fsih provides you with the h
and H.H
functions, 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 expression 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
Or apply H.H to any expression directly to get its documentation:
H.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. |
-
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.
### Added
* * Added `H.H` to apply directly to expressions without the need for quotation wrapping.
### Fixed
* * Fixed a caching issue which caused the loss of xml fragments.