Unlist snippets

This commit is contained in:
Chalarangelo
2021-01-04 13:04:15 +02:00
parent d5269b2353
commit 2f217ae700
11 changed files with 11 additions and 0 deletions

View File

@ -1,6 +1,7 @@
---
title: and
tags: math,logic,beginner
unlisted: true
---
Checks if both arguments are `true`.

View File

@ -1,6 +1,7 @@
---
title: both
tags: function,logic,beginner
unlisted: true
---
Checks if both of the given functions return `true` for a given set of arguments.

View File

@ -1,6 +1,7 @@
---
title: celsiusToFahrenheit
tags: math,beginner
unlisted: true
---
Converts Celsius to Fahrenheit.

View File

@ -1,6 +1,7 @@
---
title: fahrenheitToCelsius
tags: math,beginner
unlisted: true
---
Converts Fahrenheit to Celsius.

View File

@ -1,6 +1,7 @@
---
title: hz
tags: function,intermediate
unlisted: true
---
Measures the number of times a function is executed per second (`hz`/`hertz`).

View File

@ -1,6 +1,7 @@
---
title: kmToMiles
tags: math,beginner
unlisted: true
---
Converts kilometers to miles.

View File

@ -1,6 +1,7 @@
---
title: milesToKm
tags: math,beginner
unlisted: true
---
Converts miles to kilometers.

View File

@ -1,6 +1,7 @@
---
title: not
tags: math,logic,beginner
unlisted: true
---
Returns the logical inverse of the given value.

View File

@ -1,6 +1,7 @@
---
title: or
tags: math,logic,beginner
unlisted: true
---
Checks if at least one of the arguments is `true`.

View File

@ -1,6 +1,7 @@
---
title: xor
tags: math,logic,beginner
unlisted: true
---
Checks if only one of the arguments is `true`.

View File

@ -1,6 +1,7 @@
---
title: yesNo
tags: string,regexp,intermediate
unlisted: true
---
Returns `true` if the string is `y`/`yes` or `false` if the string is `n`/`no`.