VDS.Common 1.6.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package VDS.Common --version 1.6.0
NuGet\Install-Package VDS.Common -Version 1.6.0
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="VDS.Common" Version="1.6.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add VDS.Common --version 1.6.0
#r "nuget: VDS.Common, 1.6.0"
#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 VDS.Common as a Cake Addin
#addin nuget:?package=VDS.Common&version=1.6.0

// Install VDS.Common as a Cake Tool
#tool nuget:?package=VDS.Common&version=1.6.0

A library containing useful data structures like Trees, Tries, Sparse Arrays, Bloom Filters and indexing tailored dictionaries.

Product Compatible and additional computed target framework versions.
.NET Framework net35-client is compatible.  net40-client is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (8)

Showing the top 5 NuGet packages that depend on VDS.Common:

Package Downloads
dotNetRdf.Core

dotNetRDF is an RDF, SPARQL and Linked Datat API for .Net. It provides simple but powerfully extensible APIs for this and integrates with a variety of popular triple stores.

Sitecore.LinkedData

A package that adds Linked Data functionality into Sitecore and allows you (in the future) to select a preferred triple store. Please note: This package is purely experimental and you should refer to the project page for more information.

Coscine.SemanticSearch

This project deals with the Semantic Search implemented in Coscine.

CWTools

Package Description

imbNLP.CoreAndData.NuGet1

Natural Language Processing libraries of Veles project, Core and Data namespaces dealing with lexic resources, pipeline decomposition and other NLP stuff

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on VDS.Common:

Repository Stars
BrightstarDB/BrightstarDB
This is the core development repository for BrightstarDB.
ark-mod/ArkBot
ARK Survival Evolved application that monitors and extracts data from local ARK servers and exposes this data through a Web App, Web API and Discord Bot. Provides important functions to players: dino listings, food-status, breeding info, statistics; and server admins: rcon-commands, server managing etc.
Version Downloads Last updated
2.0.0 56,262 8/26/2023
2.0.0-pre0010 112 8/26/2023
2.0.0-pre0008 176 8/26/2023
2.0.0-pre0007 143 5/12/2023
2.0.0-pre0006 119 5/12/2023
2.0.0-pre0001 118 8/26/2023
1.10.0 979,692 5/18/2018
1.10.0-pre0001 901 5/18/2018
1.9.0 46,200 1/11/2018
1.9.0-pre0001 9,222 10/13/2017
1.8.0 91,715 7/7/2017
1.8.0-pre1 1,394 3/14/2017
1.7.0 39,705 9/26/2016
1.7.0-pre1 2,227 8/26/2016
1.6.4 102,263 11/14/2015
1.6.3 1,219 11/14/2015
1.6.2 1,201 11/14/2015
1.6.1 1,234 11/14/2015
1.6.0 26,064 7/6/2015
1.5.0 177,469 2/18/2015
1.4.0 3,497 9/5/2014
1.3.0 5,891 4/15/2014
1.2.0 25,067 2/22/2013
1.1.3 1,367 2/7/2013
1.1.2 5,988 1/15/2013
1.1.1 1,830 12/5/2012
1.1.0 9,576 11/29/2012
1.0.2 4,677 11/26/2012
1.0.1 1,510 11/26/2012
1.0.0 1,541 11/21/2012
0.9.0 1,601 11/13/2012

- Three hashing approaches are now available for Bloom Filters:
   - Naive - the existing implementation that gives full control to devlopers
   - Fast - uses approach from http://citeseer.ist.psu.edu/viewdoc/download?doi=10.1.1.152.579&rep=rep1&type=pdf
   - Hybrid - uses a hybrid of the naive and fast approaches
- ISparseArray now has a Clear() method
- New DuplicateSortedList for cases where you need to have a sorted list that supports duplicate items
- New Collections.Enumerations namespace with various useful enumerables and suitable extension methods for invoking these in fluent style
- New ReferenceEqualityComparer for when you need reference equality only
- New ReversedComparer for reversing the ordering given by another comparer
- Support for indexed access into binary trees
- Improved locking strategy for non-sparse tries to improve performance
- Filled out missing XML doc comments