chanjungskim
05/31/2023, 1:44 AMList<ScreenChannel>
type, then for me, -s is very short and not clear what type it is so, I prefer the second one like val screenChannelList: List<ScreenChannel>
is this verbose?Jason Robinson
05/31/2023, 3:54 AMList
or ArrayList
most of the time. I don't have a very strong conviction to that though, sometimes I will add -List if I think it just sounds better aesthetically. It's basically the default collection in my mind. for less frequently used collections, like Set
, I'll pretty much always add -Set to the end.lazynoda
05/31/2023, 9:05 AMa
or b
is to improve readability. So just go with the most convenient convention (inception here) for the ones using the codeChrimaeon
05/31/2023, 10:17 AMJason Robinson
05/31/2023, 4:25 PM