Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9118505
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T05:10:13+00:00 2026-06-17T05:10:13+00:00

Is there any way to pass a function or a mixin by reference to

  • 0

Is there any way to pass a function or a mixin by reference to another function or mixin in SASS, and then call the referenced function or mixin?

For example:

@function foo($value) {
    @return $value;
}

@mixin bob($fn: null) {
    a {
        b: $fn(c); // is there a way to call a referenced function here?
    }
}

@include bob(foo); // is there any way I can pass the function "foo" here?
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T05:10:14+00:00Added an answer on June 17, 2026 at 5:10 am

    Functions and mixins are not first-class in Sass, meaning you can’t pass them around as arguments like you can with variables.

    Sass 3.2 and older

    The closest you can get is with the @content directive (Sass 3.2+).

    @mixin foo {
        a {
            @content;
        }
    }
    
    @include bob {
        b: foo(c); // this replaces `@content` in the foo mixin
    }
    

    The only caveat is that the @content can’t see what’s inside your mixin. In other words, if c was only defined inside the bob mixin, it essentially wouldn’t exist because it isn’t considered in scope.

    Sass 3.3 and newer

    Starting with 3.3, you can use the call() function, but it is only for use with functions, not mixins. This requires passing string containing the name of the function as the first argument.

    @function foo($value) {
        @return $value;
    }
    
    @mixin bob($fn: null) {
        a {
            b: call($fn, c);
        }
    }
    
    @include bob('foo');
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am wondering if there is any way to pass in a value when
Other than querystring, is there any other way to pass a value with the
Is there any way that I can pass arguments in selector? example: I have
Is there any way to pass a function as a parameter in C++, like
Is there any way I can pass a primitive data type into a function
Is there any way that I can pass mutable Objects by value to a
Is there any way to pass a tsql function a database name so it
Is there any way to pass this into an Immediately-Invoked Function Expression, without resolving
Is there any way can C# pass an array in function like C++? In
Is there any way to pass function as a parameter when starting a program

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.