Albatross.Expression
3.0.13
Prefix Reserved
dotnet add package Albatross.Expression --version 3.0.13
NuGet\Install-Package Albatross.Expression -Version 3.0.13
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="Albatross.Expression" Version="3.0.13" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Albatross.Expression --version 3.0.13
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Albatross.Expression, 3.0.13"
#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 Albatross.Expression as a Cake Addin #addin nuget:?package=Albatross.Expression&version=3.0.13 // Install Albatross.Expression as a Cake Tool #tool nuget:?package=Albatross.Expression&version=3.0.13
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
- v3.0.13
- New operation GetJsonArrayItem
- Provided a json array and an index, the operation will return the array item at the index.
- example 1: GetJsonArrayItem('[1, 2, 3]', 1)
- return value 2
- example 2: GetJsonArrayItem('[1, 2, 3]', 3)
- throw an ArgumentException since array index is out of bound
- New operation GetJsonArrayItem
- v3.0.12
- New operation RegexCapture
- RegexCapture can be used to extract part of a text string using regex pattern and capature groups.
- Operands
- text to be parsed
- regex pattern
- group capture index (optional with the default of 0)
- example 1: RegexCapture('abc123', '[a-z]+(\d+)', 1)
- returns 123
- example 2: RegexCapture('abc123', '[a-z]+(\d+)')
- return abc123 because capture index is not specified and 0 is used by default
- example 3: RegexCapture('abc123', '[a-z]+(\d+)', 3)
- throw an ArgumentException since capture index is out of bound
- New operation RegexCapture
- 3.0.11
- New operation
- Floor - The Floor operation calls C# Math.Floor. It returns the largest integral value from the input double number.
- Round - The Round operation calls C# Math.Round and use AwayFromZero rounding
- Operands
- double value to be rounded
- number of fractional digits in the return value
- Operands
- UnixTimestamp2DateTime - Converts a Unix time expressed as the number of seconds that have elapsed since 1970-01-01T00:00:00Z to a DateTime value in UTC
- Operands
- integer: number of seconds that have elapsed since 1970-01-01T00:00:00Z
- Operands
- New operation
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- System.Security.Principal.Windows (>= 5.0.0)
- System.Text.Json (>= 5.0.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Albatross.Expression:
Package | Downloads |
---|---|
DnDGen.RollGen
This gives a basic, fluid interface for rolling dice from the D20 system - commonly known to work with Dungeons and Dragons. Die included are d2, d3, d4, d6, d8, d10, d12, d20, Percentile (d100), and custom die rolls. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
3.0.13 | 8,998 | 5/24/2023 |
3.0.12 | 734 | 5/24/2023 |
3.0.11 | 31,883 | 4/19/2022 |
3.0.8 | 1,012 | 3/23/2022 |
3.0.5 | 1,023 | 3/15/2022 |
3.0.3 | 3,825 | 3/24/2021 |
3.0.2 | 2,662 | 1/8/2021 |
3.0.0 | 1,052 | 12/22/2020 |
2.0.4 | 23,976 | 11/25/2019 |
2.0.3 | 14,477 | 5/4/2018 |
2.0.2 | 1,661 | 4/16/2018 |
1.3.6218.36673 | 9,520 | 1/10/2017 |
Please see https://rushuiguan.github.io/expression/