All Projects → c42f → Underscores.jl

c42f / Underscores.jl

Licence: MIT License
Underscore placeholders for convenient closure syntax

Programming Languages

julia
2034 projects

Projects that are alternatives of or similar to Underscores.jl

docheader
A small tool to check license headers
Stars: ✭ 65 (+0%)
Mutual labels:  placeholder
TextInputLayout
The objective of this code is to guide you to create login screen with TextInputLayout in iOS app.
Stars: ✭ 30 (-53.85%)
Mutual labels:  placeholder
averroes
Java bytecode generator for sound and precise partial program analysis
Stars: ✭ 19 (-70.77%)
Mutual labels:  placeholder
SkeletonPlaceholderView
A library for creating dynamic skeleton view
Stars: ✭ 25 (-61.54%)
Mutual labels:  placeholder
promise
Common interface for simple asynchronous placeholders.
Stars: ✭ 66 (+1.54%)
Mutual labels:  placeholder
webpack-image-placeholder-loader
Generate a solid color image as placeholder
Stars: ✭ 24 (-63.08%)
Mutual labels:  placeholder
NSJTextField
A custom textfield with the placeholder displayed on top when text entered.
Stars: ✭ 30 (-53.85%)
Mutual labels:  placeholder
koleton
The easiest library to show skeleton screens in an Android app.
Stars: ✭ 84 (+29.23%)
Mutual labels:  placeholder
placeholders
SVG-based placeholders in web components
Stars: ✭ 28 (-56.92%)
Mutual labels:  placeholder
blurhash.cr
A pure Crystal implementation of BlurHash algorithm
Stars: ✭ 13 (-80%)
Mutual labels:  placeholder
NetworkImage
Asynchronous image loading in SwiftUI
Stars: ✭ 39 (-40%)
Mutual labels:  placeholder
DevLorem
No more 'Lorem ipsum', get some real quotes or speeches for your free text with this generator!
Stars: ✭ 59 (-9.23%)
Mutual labels:  placeholder
python-lorem
🐍 Python library for the generation of random text that looks like Latin
Stars: ✭ 19 (-70.77%)
Mutual labels:  placeholder
DPB
Dynamic Project Builder
Stars: ✭ 22 (-66.15%)
Mutual labels:  placeholder
react-input-hints
Get more out of your placeholders. Animates input placeholders to make it look like they are being typed in realtime - https://npmjs.com/react-input-hints
Stars: ✭ 56 (-13.85%)
Mutual labels:  placeholder
FastClosures.jl
Faster closure variable capture
Stars: ✭ 39 (-40%)
Mutual labels:  closures
i3blocks-modules
Custom modules for i3blocks status bar
Stars: ✭ 36 (-44.62%)
Mutual labels:  placeholder
quill-placeholder-module
A quill module for adding placeholders
Stars: ✭ 27 (-58.46%)
Mutual labels:  placeholder
react-hold-animation
A higher-order component be use for add animation effects to the placeholder witch in react-hold.
Stars: ✭ 14 (-78.46%)
Mutual labels:  placeholder
Selector-Closure
A light way to convert objc target-action style to closure
Stars: ✭ 14 (-78.46%)
Mutual labels:  closures

Underscores

Stable Docs Dev Docs Build Status

Underscores provides a macro @_ for passing closures to functions by interpreting _ placeholders as anonymous function arguments. For example @_ map(_+1, xs) means map(x->x+1, xs).

Underscores is useful for writing anonymous functions succinctly and without naming the arguments. This is particular useful for data processing pipelines such as

@_ people |> filter(_.age > 40, __) |> map(_.name, __)

Read the documentation for more information, or see the online help for the @_ macro.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].