Skip to Content
JavaScriptで学ぶ関数型プログラミング
book

JavaScriptで学ぶ関数型プログラミング

by Michael Fogus, 和田 祐一郎
January 2014
Intermediate to advanced
352 pages
6h 34m
Japanese
O'Reilly Japan, Inc.
Content preview from JavaScriptで学ぶ関数型プログラミング
121
5
関数を組み立てる関数
 本章では、なぜプログラムの実行中にわざわざ関数を作る必要があるのか、どのよ
うに行うのかを説明することによって、第一級関数とその使い方をさらに深く追究し
ます。そして、レゴをパチッと組み合わせるように、関数の部品を集めて、より豊か
な機能をもった関数を「合成する」様々な方法を探ります。
5.1
関数合成の基礎
4
章で紹介した、関数を生成して返す
invoker
関数(
p107
)を思い出してください。
invoker
が返す関数は、オブジェクトを
1
つ目の引数に取り、
invoker
実行時にそのオ
ブジェクトをターゲットにしてメソッド呼び出しを行う関数でした。さて、オブジェ
クトがそのメソッドを持っていない場合、
invoker
関数は
undefined
を返します。こ
れを利用することによって、複数の呼び出しを合成してポリモーフィックな関数、言
い換えると、与えられた引数によって異なる動作を行う関数を生成できます。これ
を行うために、ひとつ以上の関数を引数に取り、それらの関数を
undefined
以外の値
が返されるまで順番に呼び出す方法が必要となります。この機能を提供する
dispatch
関数は命令形プログラミングのスタイルで次のように定義されます。
function dispatch(/*
任意の数の関数
*/) {
var funs = _.toArray(arguments);
var size = funs.length;
return function(target /*, ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

プログラミングRust

プログラミングRust

Jim Blandy, Jason Orendorff, 中田 秀基
ユーザーストーリーマッピング

ユーザーストーリーマッピング

Jeff Patton, 川口 恭伸, 長尾 高弘
データ分析によるネットワークセキュリティ

データ分析によるネットワークセキュリティ

Michael Collins, 中田 秀基, 木下 哲也

Publisher Resources

ISBN: 9784873116600Other