Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reimplement with Array.Copy #4

Open
todo bot opened this issue Feb 21, 2020 · 0 comments
Open

reimplement with Array.Copy #4

todo bot opened this issue Feb 21, 2020 · 0 comments
Assignees

Comments

@todo
Copy link

todo bot commented Feb 21, 2020

las-cs/src/LasCs.cs

Lines 173 to 178 in 1cec7b7

// TODO: reimplement with Array.Copy
public static T[][] chunk<T>(T[] arr, int size)
{
int i = 0;
return arr.GroupBy(s => i++ / size).Select(g => g.ToArray()).ToArray();
}


This issue was generated by todo based on a TODO comment in 1cec7b7. It's been assigned to @iykekings because they committed the code.
@todo todo bot added the todo 🗒️ label Feb 21, 2020
@todo todo bot assigned iykekings Feb 21, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant