Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 227 Bytes

early-late-bound-summary.md

File metadata and controls

10 lines (8 loc) · 227 Bytes

Early/Late bound parameters

This section discusses what it means for generic parameters to be early or late bound.

fn foo<'a, T>(b: &'a u32) -> &'a u32 { a }
//     ^^  ^early bound
//     ^^
//     ^^late bound