List.Times
List.Times(start as time, count as number, step as duration) as list
konumundan time
başlayarak start
boyut count
değerlerinin listesini döndürür. Verilen artım, step
her değere eklenen bir duration
değerdir.
Öğ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)
}