Veho 0.6.12
dotnet add package Veho --version 0.6.12
NuGet\Install-Package Veho -Version 0.6.12
<PackageReference Include="Veho" Version="0.6.12" />
<PackageVersion Include="Veho" Version="0.6.12" />
<PackageReference Include="Veho" />
paket add Veho --version 0.6.12
#r "nuget: Veho, 0.6.12"
#:package Veho@0.6.12
#addin nuget:?package=Veho&version=0.6.12
#tool nuget:?package=Veho&version=0.6.12
Extend enumerable and array functionalities
Features
Veho is an extension lib for iterable e.g. array, 2d-array and dictionary.
Content
Package | Content |
---|---|
Veho |
The core library, including all Veho sub projects |
Veho.Dictionary |
Extend IDictionary<TK, TV> |
Veho.Entries |
Extend IReadOnlyList<(TK key, TV value)> |
Veho.Enumerable |
Extend IEnumerable<T> |
Veho.Linear |
Perform basic linear algebra for matrix |
Veho.Matrix |
Extend T[,] |
Veho.Mutable.Matrix |
Extend IReadOnlyList<IReadOnlyList<T>> |
Veho.OneBase |
Extend 1-based (offset) array T[,] |
Veho.PanBase |
Extend general (offset) array T[,] |
Veho.Sequence |
Extend IReadOnlyList<T> to List<T> |
Veho.Tuple |
Extend (T, T), (T, T, T), (T, T, T, T) |
Veho.Types |
Base types in Veho series |
Veho.Vector |
Extend T[] |
Install
Veho targets .NET Standard 2.0, fits both .NET and .NET Framework.
Install Veho package and sub packages.
NuGet Package Manager:
Install-Package Veho
.NET CLI:
dotnet add package Veho
All versions can be found on nuget.
Usage
Zip two arrays into an new array
using Veho.Vector
var vecA = new[] {1, 2, 3, 4, 5};
var vecB = new[] {2, 2, 0, 3, 3};
Func<int, int, int> func = (x, y) => x * y;
var vecC = func.Zipper(vecA, vecB);
Console.WriteLine(string.Join(", ", vecC));
Compute max by reducing an array
using Veho.Vector;
var vec = Vec.From(1, 4, 6, 3, 2);
var max = vec.Reduce(Math.Max);
Console.WriteLine(max);
Push a value into an array
using Veho.Vector;
using Spare;
var arr = Vec.From("a", "b", "c");
arr.Push("d")
Console.WriteLine(arr.Deco())
Examples
Veho has a test suite in the test project.
Feedback
Veho is licensed under the MIT license.
Bug report and contribution are welcome at the GitHub repository.
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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.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. |
-
.NETStandard 2.0
- Veho.Dictionary (>= 0.6.12)
- Veho.Entries (>= 0.6.12)
- Veho.Enumerable (>= 0.6.12)
- Veho.Matrix (>= 0.6.12)
- Veho.Mutable.Matrix (>= 0.6.12)
- Veho.OneBase (>= 0.6.12)
- Veho.PanBase (>= 0.6.12)
- Veho.Sequence (>= 0.6.12)
- Veho.Tuple (>= 0.6.12)
- Veho.Types (>= 0.6.12)
- Veho.Vector (>= 0.6.11)
NuGet packages (11)
Showing the top 5 NuGet packages that depend on Veho:
Package | Downloads |
---|---|
Spare.Padder
Format each element of enumerables with identical string width |
|
Spare.Deco
Format enumerables: array, 2d-array, dictionary, etc. into string for console output |
|
Palett.Munsell
Color conversion |
|
Palett.Deco
Deco for palett related objects |
|
NeXL.Core.Ranges
Extension for Excel.Range |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last Updated |
---|---|---|
0.6.12 | 326 | 11/29/2024 |
0.6.11 | 129 | 11/27/2024 |
0.6.10 | 249 | 11/27/2024 |
0.6.9 | 118 | 11/27/2024 |
0.6.8 | 108 | 11/27/2024 |
0.6.7 | 106 | 11/27/2024 |
0.6.6 | 362 | 11/26/2024 |
0.6.5 | 538 | 11/25/2024 |
0.6.4 | 309 | 11/25/2024 |
0.6.3 | 427 | 11/24/2024 |
0.6.2 | 117 | 11/24/2024 |
0.6.1 | 559 | 11/24/2024 |
0.6.0 | 211 | 11/24/2024 |
0.5.13 | 365 | 11/21/2024 |
0.5.12 | 452 | 11/4/2024 |
0.5.11 | 710 | 11/2/2024 |
0.5.10 | 10,239 | 10/10/2021 |
0.5.9 | 3,831 | 10/7/2021 |
0.5.8 | 433 | 10/5/2021 |
0.5.7 | 2,742 | 10/5/2021 |
0.5.6 | 993 | 10/5/2021 |
0.5.5 | 432 | 10/4/2021 |
0.5.4 | 1,434 | 10/3/2021 |
0.5.3 | 417 | 10/3/2021 |
0.5.2 | 401 | 10/3/2021 |
0.5.1 | 437 | 9/29/2021 |
0.5.0 | 480 | 9/28/2021 |
0.4.18 | 5,747 | 9/26/2021 |
0.4.17 | 860 | 9/26/2021 |
0.4.16 | 482 | 9/26/2021 |
0.4.15 | 1,308 | 9/26/2021 |
0.4.14 | 446 | 9/25/2021 |
0.4.13 | 6,779 | 9/3/2021 |
0.4.12 | 2,395 | 9/3/2021 |
0.4.11 | 469 | 9/2/2021 |
0.4.10 | 426 | 9/2/2021 |
0.4.9 | 2,864 | 9/2/2021 |
0.4.8 | 1,813 | 9/2/2021 |
0.4.7 | 2,354 | 9/2/2021 |
0.4.6 | 447 | 9/2/2021 |
0.4.5 | 466 | 9/2/2021 |
0.4.4 | 1,745 | 8/31/2021 |
0.4.3 | 1,218 | 8/31/2021 |
0.4.2 | 1,681 | 8/31/2021 |
0.4.0 | 1,272 | 8/31/2021 |
0.3.6 | 2,561 | 8/30/2021 |
0.3.5 | 3,017 | 8/29/2021 |
0.3.4 | 449 | 8/29/2021 |
0.3.3 | 437 | 8/26/2021 |
0.3.2 | 468 | 8/20/2021 |
0.3.1 | 3,106 | 8/20/2021 |
0.3.0 | 2,352 | 8/17/2021 |
0.2.18 | 3,858 | 8/16/2021 |
0.2.16 | 1,615 | 8/16/2021 |
0.2.15 | 457 | 8/16/2021 |
0.2.14 | 882 | 8/16/2021 |
0.2.13 | 435 | 8/15/2021 |
0.2.12 | 479 | 8/15/2021 |
0.2.11 | 450 | 8/15/2021 |
0.2.10 | 4,033 | 8/12/2021 |
0.2.9 | 452 | 8/12/2021 |
0.2.8 | 494 | 8/12/2021 |
0.2.7 | 495 | 8/12/2021 |
0.2.6 | 464 | 8/12/2021 |
0.2.4 | 1,333 | 8/12/2021 |
0.2.3 | 667 | 8/12/2021 |
0.2.2 | 464 | 8/12/2021 |
0.2.1 | 453 | 8/12/2021 |
0.2.0 | 456 | 8/12/2021 |
0.1.18 | 2,330 | 3/7/2021 |
0.1.17 | 1,206 | 3/7/2021 |
0.1.16 | 497 | 3/7/2021 |
0.1.15 | 544 | 3/7/2021 |
0.1.14 | 508 | 3/7/2021 |
0.1.12 | 526 | 3/6/2021 |
0.1.11 | 523 | 3/6/2021 |
0.1.10 | 724 | 3/5/2021 |
0.1.9 | 941 | 3/1/2021 |
0.1.8 | 501 | 2/28/2021 |
0.1.7 | 483 | 2/27/2021 |
0.1.6 | 476 | 2/27/2021 |
0.1.5 | 473 | 2/27/2021 |
0.1.4 | 451 | 2/18/2021 |
0.1.3 | 502 | 2/7/2021 |
0.1.1 | 9,829 | 1/30/2021 |
0.1.0 | 496 | 1/30/2021 |
0.0.29 | 2,073 | 1/29/2021 |
0.0.26 | 481 | 1/29/2021 |
0.0.25 | 1,780 | 1/29/2021 |
0.0.24 | 458 | 1/29/2021 |
0.0.23 | 460 | 1/29/2021 |
0.0.22 | 1,605 | 1/28/2021 |
0.0.21 | 478 | 1/28/2021 |
0.0.19 | 462 | 1/28/2021 |
0.0.18 | 507 | 1/26/2021 |
0.0.17 | 1,800 | 1/25/2021 |
0.0.16 | 480 | 1/25/2021 |
0.0.15 | 728 | 1/25/2021 |
0.0.14 | 509 | 1/25/2021 |
0.0.13 | 480 | 1/25/2021 |
0.0.12 | 469 | 1/24/2021 |
0.0.11 | 530 | 1/24/2021 |
0.0.10 | 513 | 1/24/2021 |
0.0.9 | 516 | 1/23/2021 |
0.0.8 | 655 | 1/22/2021 |
0.0.7 | 524 | 1/19/2021 |
0.0.6 | 514 | 1/19/2021 |
0.0.5 | 527 | 1/19/2021 |
0.0.4 | 536 | 1/19/2021 |
0.0.1-alpha | 393 | 11/2/2020 |