Stefan
01/31/2019, 1:18 PMduncanawoods
01/31/2019, 1:35 PMstevekrouse
duncanawoods
01/31/2019, 2:39 PMadd(a : ushort, b : ushort
add(a : int, b : int)
add(a : double, b : double)
add(a : any, b : any)
add<T>(a : T, b : T)
add<T>(... list : T)
stevekrouse
duncanawoods
01/31/2019, 5:49 PMstevekrouse
Tim Swast
01/31/2019, 6:08 PMJoshua Horowitz
02/01/2019, 3:22 AMadd(a : double, b : double)
is more general than add(a : int, b : int)
.)
⢠Passing the exact same parameters along, with a few extra parameters! (So join(list, delimiter)
is more general than joinWithCommas(list)
.)