Skip to content

Commit

Permalink
Merge pull request #5 from b3b00/feature/dictionary-generator
Browse files Browse the repository at this point in the history
Feature/dictionary generator
  • Loading branch information
b3b00 committed Sep 8, 2022
2 parents 3d73d29 + d9bf78f commit 685c82a
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;

namespace multiDimensionalDictionary
{


[ExcludeFromCodeCoverage]
public class ExpirationalMultiDimensionDictionary<K1, K2, K3, K4, K5, K6, K7, K8, K9, K10, V>
{
TimeSpan ExpirationSpan1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;

namespace multiDimensionalDictionary
{


[ExcludeFromCodeCoverage]
public class ExpirationalMultiDimensionDictionary<K1, K2, K3, K4, K5, K6, V>
{
TimeSpan ExpirationSpan1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;

namespace multiDimensionalDictionary
{


[ExcludeFromCodeCoverage]
public class ExpirationalMultiDimensionDictionary<K1, K2, K3, K4, K5, K6, K7, V>
{
TimeSpan ExpirationSpan1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;

namespace multiDimensionalDictionary
{


[ExcludeFromCodeCoverage]
public class ExpirationalMultiDimensionDictionary<K1, K2, K3, K4, K5, K6, K7, K8, V>
{
TimeSpan ExpirationSpan1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;

namespace multiDimensionalDictionary
{


[ExcludeFromCodeCoverage]
public class ExpirationalMultiDimensionDictionary<K1, K2, K3, K4, K5, K6, K7, K8, K9, V>
{
TimeSpan ExpirationSpan1;
Expand Down
3 changes: 2 additions & 1 deletion MultiDimensionDictionary/multiDimentsionDictionary/multi6.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@

using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using multiDimensionalDictionary;

namespace multiDimensionalDictionary {


[ExcludeFromCodeCoverage]
public class MultiDimensionalDictionary<K1, K2, K3, K4, K5, K6, V>
{
protected ConcurrentDictionary<K1, MultiDimensionalDictionary<K2, K3, K4, K5, K6, V>> Data{ get;set; }
Expand Down
3 changes: 2 additions & 1 deletion MultiDimensionDictionary/multiDimentsionDictionary/multi7.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@

using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using multiDimensionalDictionary;

namespace multiDimensionalDictionary {


[ExcludeFromCodeCoverage]
public class MultiDimensionalDictionary<K1, K2, K3, K4, K5, K6, K7, V>
{
protected ConcurrentDictionary<K1, MultiDimensionalDictionary<K2, K3, K4, K5, K6, K7, V>> Data{ get;set; }
Expand Down
3 changes: 2 additions & 1 deletion MultiDimensionDictionary/multiDimentsionDictionary/multi8.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@

using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using multiDimensionalDictionary;

namespace multiDimensionalDictionary {


[ExcludeFromCodeCoverage]
public class MultiDimensionalDictionary<K1, K2, K3, K4, K5, K6, K7, K8, V>
{
protected ConcurrentDictionary<K1, MultiDimensionalDictionary<K2, K3, K4, K5, K6, K7, K8, V>> Data{ get;set; }
Expand Down
3 changes: 2 additions & 1 deletion MultiDimensionDictionary/multiDimentsionDictionary/multi9.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@

using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using multiDimensionalDictionary;

namespace multiDimensionalDictionary {


[ExcludeFromCodeCoverage]
public class MultiDimensionalDictionary<K1, K2, K3, K4, K5, K6, K7, K8, K9, V>
{
protected ConcurrentDictionary<K1, MultiDimensionalDictionary<K2, K3, K4, K5, K6, K7, K8, K9, V>> Data{ get;set; }
Expand Down

0 comments on commit 685c82a

Please sign in to comment.