ap

WebJar for ap

Лицензия

Лицензия

MIT/X11
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

ap
Последняя версия

Последняя версия

0.2.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

ap
WebJar for ap
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

http://github.com/substack/node-ap

Скачать ap

Имя Файла Размер
ap-0.2.0.pom
ap-0.2.0.jar 4 KB
ap-0.2.0-sources.jar 22 bytes
ap-0.2.0-javadoc.jar 22 bytes
Обзор

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/ap/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>ap</artifactId>
    <version>0.2.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/ap/
implementation 'org.webjars.npm:ap:0.2.0'
// https://jarcasting.com/artifacts/org.webjars.npm/ap/
implementation ("org.webjars.npm:ap:0.2.0")
'org.webjars.npm:ap:jar:0.2.0'
<dependency org="org.webjars.npm" name="ap" rev="0.2.0">
  <artifact name="ap" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='ap', version='0.2.0')
)
libraryDependencies += "org.webjars.npm" % "ap" % "0.2.0"
[org.webjars.npm/ap "0.2.0"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

ap

Function.prototype.bind sets this which is super annoying if you just want to do currying over arguments while passing this through.

Instead you can do:

var ap = require('ap');
var z = ap([3], function (x, y) {
    return this.z * (x * 2 + y);
}).call({ z : 10 }, 4);
console.log(z);

100

methods

var ap = require('ap')

ap(args, fn)

Fill in the arguments args at the beginning of fn's arguments list.

ap.pa(args, fn)

Fill in the arguments args at the end of fn's arguments list.

ap.apa(left, right, fn)

Fill in left arguments starting from the beginning of fn's argument list and right arguments starting from the end.

ap.partial(fn, args...)

Fill in fn's arguments with args... from the beginning of fn's arguments list.

ap.partialRight(fn, args...)

Fill in fn's arguments with args... starting from the end of fn's arguments list.

ap.curry(fn, args...)

Curry fn, returning a new function with args... partially applied from the beginning of fn's arguments list.

ap.curryRight(fn, args...)

Curry fn returning a new function with args... partially applied from the end of fn's arguments list.

Версии библиотеки

Версия
0.2.0