@charset "UTF-8";

// @description
// * This file imports key functionalities from other modules
// * for use in a stylesheet.

// @author Khaled Mohamed

// @license MIT

// @repository: https://github.com/Black-Axis/sass-pire

// @namespace functions/global

// * forwarding the "cut-unit" module.
// * The "cut-unit" module likely contains a function to
// * cut the unit or strip it from a given number.
// @see cut-unit
@forward "cut-unit";

// * forwarding the "get-half-number" module.
// * The "get-half-number" module probably contains a function
// * to get the half of a number passed to it, whether it has
// * a unit or not.
// @see get-half-number
@forward "get-half-number";

// * forwarding the "is-in-list" module.
// * The "is-in-list" module appears to have a function to check
// * if a value is in a given list, returning true if the value
// * exists in the list and false if not.
// @see is-in-list
@forward "is-in-list";

// * forwarding the "has-pos" module.
// * The "has-pos" module appears to have a function to check
// * if a value is in a given list, returning true if the value
// * exists in the list and false if not.
// @see has-pos
@forward "has-position";

// * forwarding the "get-sum-list" module.
// * The "get-sum-list" module likely contains a function to get
// * the summation of a values are passed to.
// @see sum
@forward "sum";

// * forwarding the "trim-start" module.
// * The "trim-start" module likely contains a function to trim
// * the string from the start positions.
// * We mean that: remove the spaces from start of string.
// @see trim-start
@forward "trim-start";

// * forwarding the "trim-end" module.
// * The "trim-end" module likely contains a function to trim
// * the string from the end positions.
// * We mean that: remove the spaces from end of string.
// @see trim-end
@forward "trim-end";

// * forwarding the "trim-string" module.
// * The "trim-string" module likely contains a function to trim
// * the string from the start and end positions.
// * We mean that: remove the spaces from start and end of string.
// @see trim-string
@forward "trim-string";

// * forwarding the "clamped" module.
// * The "clamped" module likely contains a function to return
// * the clamped function to be used in fluid typography.
// @see clamped
@forward "clamped";
