I tried to write simple pattern matcher in DrRacket using #lang plai-typed as follows:
#lang plai-typed
(define-type Activity
[kind (type : string) (description : string)]
)
(define-type Hacktivity
[activity1 (activity : Activity)]
[activity2 (activity : Activity)]
[activity3 (activity : Activity)]
)
(define (good? [h : Hacktivity]) : boolean
(type-case Hacktivity h
[activity1 (activity) (string=? activity-kind-type "Analyze")]
[activity2 (activity) (string=? "Analyze" "Analyze")]
[activity3 (activity) (string=? "Analyze" "Analyze")]
)
)
However not able to get the "activity-kind-type" part correct. Any help is appreciated. Thanks in advance.
I could solve it by using the following method:
If you have nested type definition then type-case need to be applied in a nested manner.