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 title: and
tags: math,logic,beginner tags: math,logic,beginner
unlisted: true
--- ---
Checks if both arguments are `true`. Checks if both arguments are `true`.

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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