Skip to content

Instantly share code, notes, and snippets.

View jaywalia's full-sized avatar

Jay Walia jaywalia

View GitHub Profile
@jaywalia
jaywalia / gist:f968fe16d881dbeb252a318ce787a765
Created April 7, 2022 05:18 — forked from leonardo-m/gist:6e9315a57fe9caa893472c2935e9d589
A selection of 101 LINQ Samples converted to Rust
// Port of the C# 101 LINQ Samples rewritten into Apple's Swift 3.
#![feature(ordering_chaining, step_by)]
fn main() {
// linq5: Where - Indexed
/*
//c#
public void Linq5()
{