Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 8D30F200BDE for ; Thu, 10 Nov 2016 12:47:18 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 8BB1A160B22; Thu, 10 Nov 2016 11:47:18 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id D8520160B19 for ; Thu, 10 Nov 2016 12:47:17 +0100 (CET) Received: (qmail 30841 invoked by uid 500); 10 Nov 2016 11:47:16 -0000 Mailing-List: contact commits-help@lucenenet.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: lucene-net-dev@lucenenet.apache.org Delivered-To: mailing list commits@lucenenet.apache.org Received: (qmail 30082 invoked by uid 99); 10 Nov 2016 11:47:15 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 Nov 2016 11:47:15 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 4E0BFEEE3A; Thu, 10 Nov 2016 11:47:15 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: nightowl888@apache.org To: commits@lucenenet.apache.org Date: Thu, 10 Nov 2016 11:47:25 -0000 Message-Id: <0fad710adc2141bea32e011bdf084237@git.apache.org> In-Reply-To: <75d0a803894f49d5a0c77d723f975556@git.apache.org> References: <75d0a803894f49d5a0c77d723f975556@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [11/58] [abbrv] lucenenet git commit: Added TreeSet and TreeDictionary from C5 to the Support namespace archived-at: Thu, 10 Nov 2016 11:47:18 -0000 Added TreeSet and TreeDictionary from C5 to the Support namespace Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/5f198526 Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/5f198526 Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/5f198526 Branch: refs/heads/master Commit: 5f198526ed04616007e8baa03480fa7df327c1b3 Parents: 0844f41 Author: Shad Storhaug Authored: Thu Oct 27 18:43:54 2016 +0700 Committer: Shad Storhaug Committed: Mon Nov 7 18:44:01 2016 +0700 ---------------------------------------------------------------------- src/Lucene.Net.Core/Lucene.Net.csproj | 3 + src/Lucene.Net.Core/Support/C5.Support.cs | 7335 ++++++++++++++++++ src/Lucene.Net.Core/Support/TreeDictionary.cs | 74 + src/Lucene.Net.Core/Support/TreeSet.cs | 3752 +++++++++ src/Lucene.Net.Tests/Lucene.Net.Tests.csproj | 12 + .../core/Support/C5/ArrayBase.cs | 479 ++ .../core/Support/C5/ArrayList.cs | 2248 ++++++ .../core/Support/C5/DropMultiplicity.cs | 15 + src/Lucene.Net.Tests/core/Support/C5/Events.cs | 893 +++ .../core/Support/C5/GenericCollectionTester.cs | 87 + src/Lucene.Net.Tests/core/Support/C5/HashBag.cs | 658 ++ src/Lucene.Net.Tests/core/Support/C5/Sorting.cs | 235 + .../core/Support/C5/SupportClasses.cs | 506 ++ .../core/Support/C5/WeakViewList.cs | 101 + .../core/Support/C5/Wrappers.cs | 2338 ++++++ .../core/Support/TestTreeDictionary.cs | 522 ++ .../core/Support/TestTreeSet.cs | 2970 +++++++ 17 files changed, 22228 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/5f198526/src/Lucene.Net.Core/Lucene.Net.csproj ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Core/Lucene.Net.csproj b/src/Lucene.Net.Core/Lucene.Net.csproj index 39bf69e..09915fb 100644 --- a/src/Lucene.Net.Core/Lucene.Net.csproj +++ b/src/Lucene.Net.Core/Lucene.Net.csproj @@ -617,6 +617,7 @@ + @@ -659,6 +660,8 @@ + +