List.Times

Sözdizimi

List.Times(
    start as time,
    count as number,
    step as duration
) as list

Hakkında

time'den başlayarak countboyutunda, start değerlerinin bir listesini döndürür. Verilen stepartışı, her değere eklenen duration değeridir.

Example

Öğlenden () başlayarak bir saat (#time(12, 0, 0)#duration(0, 1, 0, 0)) artarak 4 değerin listesini oluşturun.

Kullanım

List.Times(#time(12, 0, 0), 4, #duration(0, 1, 0, 0))

Çıkış

{
    #time(12, 0, 0),
    #time(13, 0, 0),
    #time(14, 0, 0),
    #time(15, 0, 0)
}