Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS 

spec-block-is-subset? - is a spec block a subset of an object's spec?

spec-block-is-subset?: func [block [block!] object [object!]] [
    all [
        spec-block? block
        subset? first construct block  first object
    ]
]

spec-block-matches? - does a spec block match the spec for an object?

spec-block-matches?: func [block [block!] object [object!]] [
    all [
        spec-block? block
        equal? first construct block  first object
    ]
]
« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS