Skip to content

Commit

Permalink
update package version
Browse files Browse the repository at this point in the history
  • Loading branch information
cathei committed Dec 31, 2022
1 parent b907943 commit 642964f
Show file tree
Hide file tree
Showing 5 changed files with 61 additions and 32 deletions.
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -78,48 +78,66 @@ public static int Min<T, TUp>(this IStub<IEnumerable<T>, TUp> enumerable)
throw new NotImplementedException();
}

public static int Min<T, TUp, TComparer>(this IStub<IEnumerable<T>, TUp> enumerable, TComparer comparer)
where TComparer : IComparer<T>
public static int Min<T, TUp>(this IStub<IEnumerable<T>, TUp> enumerable, IComparer<T> comparer)
{
throw new NotImplementedException();
}

// public static int MinBy<T, TUp, TKey>(this IStub<IEnumerable<T>, TUp> enumerable,
// Func<T, TKey> selector, IComparer<TKey>? comparer = null)
// {
// throw new NotImplementedException();
// }
//
// public static int MinBy<T, TUp, TKey, TComparer>(this IStub<IEnumerable<T>, TUp> enumerable,
// IStructFunction<T, TKey> keySelector, TComparer comparer)
// where TComparer : IComparer<TKey>
// {
// throw new NotImplementedException();
// }
public static int MinBy<T, TUp, TKey>(this IStub<IEnumerable<T>, TUp> enumerable, Func<T, TKey> keySelector)
{
throw new NotImplementedException();
}

public static int MinBy<T, TUp, TKey>(this IStub<IEnumerable<T>, TUp> enumerable,
Func<T, TKey> keySelector, IComparer<TKey> comparer)
{
throw new NotImplementedException();
}

public static int MinBy<T, TUp, TKey>(this IStub<IEnumerable<T>, TUp> enumerable,
IStructFunction<T, TKey> keySelector)
{
throw new NotImplementedException();
}

public static int MinBy<T, TUp, TKey>(this IStub<IEnumerable<T>, TUp> enumerable,
IStructFunction<T, TKey> keySelector, IComparer<TKey> comparer)
{
throw new NotImplementedException();
}

public static int Max<T, TUp>(this IStub<IEnumerable<T>, TUp> enumerable)
{
throw new NotImplementedException();
}

public static int Max<T, TUp, TComparer>(this IStub<IEnumerable<T>, TUp> enumerable, TComparer comparer)
where TComparer : IComparer<T>
public static int Max<T, TUp>(this IStub<IEnumerable<T>, TUp> enumerable, IComparer<T> comparer)
{
throw new NotImplementedException();
}

// public static int MaxBy<T, TUp, TKey>(this IStub<IEnumerable<T>, TUp> enumerable,
// Func<T, TKey> selector, IComparer<TKey>? comparer = null)
// {
// throw new NotImplementedException();
// }
//
// public static int MaxBy<T, TUp, TKey, TComparer>(this IStub<IEnumerable<T>, TUp> enumerable,
// IStructFunction<T, TKey> keySelector, TComparer comparer)
// where TComparer : IComparer<TKey>
// {
// throw new NotImplementedException();
// }
public static int MaxBy<T, TUp, TKey>(this IStub<IEnumerable<T>, TUp> enumerable, Func<T, TKey> keySelector)
{
throw new NotImplementedException();
}

public static int MaxBy<T, TUp, TKey>(this IStub<IEnumerable<T>, TUp> enumerable,
Func<T, TKey> keySelector, IComparer<TKey> comparer)
{
throw new NotImplementedException();
}

public static int MaxBy<T, TUp, TKey>(this IStub<IEnumerable<T>, TUp> enumerable,
IStructFunction<T, TKey> keySelector)
{
throw new NotImplementedException();
}

public static int MaxBy<T, TUp, TKey>(this IStub<IEnumerable<T>, TUp> enumerable,
IStructFunction<T, TKey> keySelector, IComparer<TKey> comparer)
{
throw new NotImplementedException();
}

public static List<T> ToList<T, TUp>(this IStub<IEnumerable<T>, TUp> enumerable)
{
Expand Down
2 changes: 1 addition & 1 deletion LinqGen.Unity/Packages/com.cathei.linqgen/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"author": {
"name": "Maxwell Keonwoo Kang"
},
"version": "0.1.1",
"version": "0.2.0",
"unity": "2020.1",
"description": "Fast Linq-to-object source generator",
"license": "MIT",
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ Install from NuGet, both [LinqGen](https://www.nuget.org/packages/LinqGen) as li

```xml
<ItemGroup>
<PackageReference Include="LinqGen" Version="0.1.1" />
<PackageReference Include="LinqGen.Generator" Version="0.1.1" />
<PackageReference Include="LinqGen" Version="0.2.0" />
<PackageReference Include="LinqGen.Generator" Version="0.2.0" />
</ItemGroup>
```

For Unity, you can install as git package from Unity Package Manager.
```
https://github.com/cathei/LinqGen.git?path=LinqGen.Unity/Packages/com.cathei.linqgen#v0.1.0
https://github.com/cathei/LinqGen.git?path=LinqGen.Unity/Packages/com.cathei.linqgen#v0.2.0
```
Or install via OpenUPM.
```
Expand Down

0 comments on commit 642964f

Please sign in to comment.