Skip to content

Instantly share code, notes, and snippets.

@maxweilun1989
maxweilun1989 / gist:45889353a76a47fbe55bc17af135a154
Created April 10, 2023 09:15 — 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()
{