mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-21 19:16:23 +00:00
623 B
623 B
date | id | title |
---|---|---|
2020-11-26 | f8951d1c-bddf-49c3-bd61-fdfffc412deb | predicate |
Origin
Latin praedicatus "something declared"
Definition
A function that returns a single boolean value
Examples
type Predicate = () => boolean
function isTurkey(x: string) {
return x === 'turkey'
}
interface Dog {
bark: 'dog'
}
interface Cat {
meow: 'cat'
}
function isCat(animal): animal is Cat {
return (animal as Cat).meow !== undefined
}
function makeSound(animal: Cat | Dog) {
if (isCat(animal)) {
animal.meow
} else {
animal.bark
}
}