ポイントを定義します
type TimeSeriesPoint<'T> =
{ Time : DateTimeOffset
Value : 'T }
そしてシリーズ
type TimeSeries<'T> = TimeSeriesPoint<'T> list
ここで、このリストのポイントは時間順に並べられていると想定しています。
2 つの時系列を圧縮しようとしています。一般に、それらには同じ時間のポイントがありますが、いずれかのポイントが欠落している可能性があります。
以下のコードで不完全なパターン一致の警告が表示される理由は何ですか?
let zip (series1 : TimeSeries<float>) (series2 : TimeSeries<float>) =
let rec loop revAcc ser1 ser2 =
match ser1, ser2 with
| [], _ | _, [] -> List.rev revAcc
| hd1::tl1, hd2::tl2 when hd1.Time = hd2.Time ->
loop ({ Time = hd1.Time; Value = (hd1.Value, hd2.Value) }::revAcc) tl1 tl2
| hd1::tl1, hd2::tl2 when hd1.Time < hd2.Time ->
loop revAcc tl1 ser2
| hd1::tl1, hd2::tl2 when hd1.Time > hd2.Time ->
loop revAcc ser1 tl2
loop [] series1 series2
こう書くと警告が出ないのですが、末尾再帰ですか?
let zip' (series1 : TimeSeries<float>) (series2 : TimeSeries<float>) =
let rec loop revAcc ser1 ser2 =
match ser1, ser2 with
| [], _ | _, [] -> List.rev revAcc
| hd1::tl1, hd2::tl2 ->
if hd1.Time = hd2.Time then
loop ({ Time = hd1.Time; Value = (hd1.Value, hd2.Value) }::revAcc) tl1 tl2
elif hd1.Time < hd2.Time then
loop revAcc tl1 ser2
else
loop revAcc ser1 tl2
loop [] series1 series2