mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-20 17:08:00 +02:00
Renamed System.Collections.Generic to System.Collections
This commit is contained in:
parent
4cb9791845
commit
dbd9b32e3f
281 changed files with 368 additions and 341 deletions
|
@ -4,7 +4,7 @@
|
|||
|
||||
using System.Diagnostics;
|
||||
|
||||
namespace System.Collections.Generic
|
||||
namespace System.Collections
|
||||
{
|
||||
public class BinaryHeap<T>
|
||||
{
|
|
@ -6,7 +6,7 @@
|
|||
#define VERSION_DICTIONARY
|
||||
#endif
|
||||
|
||||
namespace System.Collections.Generic
|
||||
namespace System.Collections
|
||||
{
|
||||
using System;
|
||||
using System.Collections;
|
|
@ -1,4 +0,0 @@
|
|||
namespace System.Collections.Generic
|
||||
{
|
||||
|
||||
}
|
|
@ -8,13 +8,13 @@
|
|||
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections;
|
||||
using System.Diagnostics;
|
||||
using System.Diagnostics.Contracts;
|
||||
using System.Text;
|
||||
using System.Security;
|
||||
|
||||
namespace System.Collections.Generic
|
||||
namespace System.Collections
|
||||
{
|
||||
/// Implementation notes:
|
||||
/// This uses an array-based implementation similar to Dictionary<T>, using a buckets array
|
|
@ -1,4 +1,4 @@
|
|||
namespace System.Collections.Generic
|
||||
namespace System.Collections
|
||||
{
|
||||
interface ICollection<T>
|
||||
{
|
4
BeefLibs/corlib/src/Collections/IComparer.bf
Normal file
4
BeefLibs/corlib/src/Collections/IComparer.bf
Normal file
|
@ -0,0 +1,4 @@
|
|||
namespace System.Collections
|
||||
{
|
||||
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
using System;
|
||||
|
||||
namespace System.Collections.Generic
|
||||
namespace System.Collections
|
||||
{
|
||||
interface IEnumerator<T>
|
||||
{
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
namespace System.Collections.Generic
|
||||
namespace System.Collections
|
||||
{
|
||||
using System;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
namespace System.Collections.Generic
|
||||
namespace System.Collections
|
||||
{
|
||||
public struct KeyValuePair<TKey, TValue>
|
||||
{
|
|
@ -12,7 +12,7 @@ using System.Diagnostics.Contracts;
|
|||
using System.Threading;
|
||||
using System.Reflection;
|
||||
|
||||
namespace System.Collections.Generic
|
||||
namespace System.Collections
|
||||
{
|
||||
interface IList
|
||||
{
|
|
@ -6,7 +6,7 @@
|
|||
#define VERSION_QUEUE
|
||||
#endif
|
||||
|
||||
namespace System.Collections.Generic
|
||||
namespace System.Collections
|
||||
{
|
||||
using System;
|
||||
using System.Diagnostics;
|
|
@ -2,7 +2,7 @@
|
|||
// of an open-sourcing initiative in 2014 of the C# core libraries.
|
||||
// The original source was submitted to https://github.com/Microsoft/referencesource
|
||||
|
||||
namespace System.Collections.Generic
|
||||
namespace System.Collections
|
||||
{
|
||||
struct Sorter<T, T2>
|
||||
{
|
Loading…
Add table
Add a link
Reference in a new issue