SeqPrinter 0.2.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 SeqPrinter --version 0.2.1
NuGet\Install-Package SeqPrinter -Version 0.2.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="SeqPrinter" Version="0.2.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SeqPrinter --version 0.2.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: SeqPrinter, 0.2.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 SeqPrinter as a Cake Addin #addin nuget:?package=SeqPrinter&version=0.2.1 // Install SeqPrinter as a Cake Tool #tool nuget:?package=SeqPrinter&version=0.2.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
About
This package provides a colored and tabularized output for sequences of named or anonymous records.
(Colors not visible in markdown.)
Installation
FSI
#r "nuget: SeqPrinter"
open SeqPrinter
.NET CLI
dotnet add package SeqPrinter
Usage
Basic
type Person = { Name: string; Age: int; Height: int }
let typedList =
[
{
Name = "Stanley"
Age = 32
Height = 175
}
{
Name = "Akira"
Age = 27
Height = 175
}
{
Name = "Andrei"
Age = 35
Height = 200
}
]
typedList |> Printer.print
Age Height Name
<Int32> <Int32> <String>
32 175 Stanley
27 175 Akira
35 200 Andrei
Selecting Columns
You can select which fields of your type to display as columns.
typedList
|> Printer
|> Printer.withColumns [ "Name"; "Height" ]
|> Printer.print
Name Height
<String> <Int32>
Stanley 175
Akira 175
Andrei 200
Ordering columns
Similarly you can also determine the order of fields to display.
typedList
|> Printer
|> Printer.withColumns [ "Name"; "Age"; "Height" ]
|> Printer.print
Name Age Height
<String> <Int32> <Int32>
Stanley 32 175
Akira 27 175
Andrei 35 200
Anonymous Records
open System
let anonRecords =
[|
for i in 1. .. 10. ->
{|
Number = i
IsEven = i % 2. = 0.
Log = Math.Log i
|}
|]
anonRecords
|> Printer
|> Printer.withColumns [ "Number"; "IsEven"; "Log" ]
|> Printer.print
Number IsEven Log
<Double> <Boolean> <Double>
1 False 0
2 True 0.6931471805599453
3 False 1.0986122886681098
4 True 1.3862943611198906
5 False 1.6094379124341003
6 True 1.791759469228055
7 False 1.9459101490553132
8 True 2.0794415416798357
9 False 2.1972245773362196
10 True 2.302585092994046
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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.
-
net6.0
- FSharp.Core (>= 7.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.