VDS.Common
1.6.2
See the version list below for details.
dotnet add package VDS.Common --version 1.6.2
NuGet\Install-Package VDS.Common -Version 1.6.2
<PackageReference Include="VDS.Common" Version="1.6.2" />
<PackageVersion Include="VDS.Common" Version="1.6.2" />
<PackageReference Include="VDS.Common" />
paket add VDS.Common --version 1.6.2
#r "nuget: VDS.Common, 1.6.2"
#:package VDS.Common@1.6.2
#addin nuget:?package=VDS.Common&version=1.6.2
#tool nuget:?package=VDS.Common&version=1.6.2
A library containing useful data structures like Trees, Tries, Sparse Arrays, Bloom Filters and indexing tailored dictionaries.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net35-client is compatible. net40-client is compatible. |
This package has no dependencies.
NuGet packages (9)
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. |
|
|
CWTools
Package Description |
|
|
Coscine.SemanticSearch
This project deals with the Semantic Search implemented in Coscine. |
|
|
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. |
|
|
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 (4)
Showing the top 4 popular GitHub repositories that depend on VDS.Common:
| Repository | Stars |
|---|---|
|
anobaka/Bakabase
A local media manager for all types of files. 二次元老司机专用的本地媒体文件管理器,支持管理和处理音视频、本子、图集、小说、哔哩哔哩视频、游戏甚至mod等各类资源,集成steam、DLsite、exhentai等平台。
|
|
|
BrightstarDB/BrightstarDB
This is the core development repository for BrightstarDB.
|
|
|
dotnetrdf/dotnetrdf
dotNetRDF is a powerful and flexible API for working with RDF and SPARQL in .NET environments
|
|
|
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 |
|---|---|---|
| 3.0.0 | 156,823 | 6/11/2025 |
| 3.0.0-pre001 | 687 | 6/11/2025 |
| 2.0.0 | 440,143 | 8/26/2023 |
| 2.0.0-pre0010 | 287 | 8/26/2023 |
| 2.0.0-pre0008 | 343 | 8/26/2023 |
| 2.0.0-pre0007 | 342 | 5/12/2023 |
| 2.0.0-pre0006 | 306 | 5/12/2023 |
| 2.0.0-pre0001 | 276 | 8/26/2023 |
| 1.10.0 | 1,328,098 | 5/18/2018 |
| 1.10.0-pre0001 | 1,533 | 5/18/2018 |
| 1.9.0 | 53,655 | 1/11/2018 |
| 1.9.0-pre0001 | 13,972 | 10/13/2017 |
| 1.8.0 | 226,313 | 7/7/2017 |
| 1.8.0-pre1 | 1,883 | 3/14/2017 |
| 1.7.0 | 41,376 | 9/26/2016 |
| 1.7.0-pre1 | 2,895 | 8/26/2016 |
| 1.6.4 | 107,588 | 11/14/2015 |
| 1.6.3 | 1,810 | 11/14/2015 |
| 1.6.2 | 1,779 | 11/14/2015 |
| 1.6.1 | 1,834 | 11/14/2015 |
- 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