Share via


List.Times

Sözdizimi

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

Hakkında

konumundan time başlayarak startboyut countdeğerlerinin listesini döndürür. Verilen artım, stepher değere eklenen bir duration değerdir.

Örnek 1

Öğlenden başlayarak (#time(12, 0, 0)) bir saat artırarak (#duration(0, 1, 0, 0)) 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)
}