sass-site/old_source/documentation/values/functions.html.md.erb
2023-01-06 17:37:45 -05:00

18 lines
643 B
Plaintext

---
title: Functions
---
<%= partial 'documentation/snippets/call-impl-status' %>
[Functions][] can be values too! You can't directly write a function as a value,
but you can pass a function's name to the [`meta.get-function()` function][] to
get it as a value. Once you have a function value, you can pass it to the
[`meta.call()` function][] to call it. This is useful for writing *higher-order
functions* that call other functions.
[Functions]: ../at-rules/function
[`meta.get-function()` function]: ../modules/meta#get-function
[`meta.call()` function]: ../modules/meta#call
<%= partial 'code-snippets/example-first-class-function' %>