zoukankan      html  css  js  c++  java
  • [Javascript] Other functor

    EventStream:

    You can use RxJS, BaconJS or any reactive programming lib you want:

    var id_s = map(function(e) { return  '#'+e.id }, Bacon.fromEventTarget(document, "click"))
    var element_s = map(document.querySelector, id_s)
    //=> EventStream(Element)
    
    element_s.onValue(function(el) { alert('The inner html is ' +el.innerHTML) })

    Here using BaconJS; we need to call onValue to subscribe stream.

    Future:

    It is "lazy", you must fork it.

    var makeHtml = function(post){ return "<div>"+post.title+"</div>"};
    var page_f = map(makeHtml, http.get('/posts/2'))
    
    page_f.fork(function(err) { throw(err) },
                    function(page){ $('#container').html(page) })
    console.clear();
    var _ = R;
    var P = PointFree;
    var map = P.fmap;
    var compose = P.compose;
    var Maybe = P.Maybe;
    var Identity = P.Id;
    
    
    
    
    
    
    // Exercise 1
    // ==========
    // Use _.add(x,y) and map(f,x) to make a function that increments a value inside a functor
    console.log("--------Start exercise 1--------")
    
    var ex1 = map(_.add(1))
    
    
    assertDeepEqual(Identity(3), ex1(Identity(2)))
    console.log("exercise 1...ok!")
    
    
    
    
    
    // Exercise 2
    // ==========
    // Use _.head to get the first element of the list
    var xs = Identity(['do', 'ray', 'me', 'fa', 'so', 'la', 'ti', 'do'])
    console.log("--------Start exercise 2--------")
    
    
    var ex2 = map(_.head);
    
    
    assertDeepEqual(Identity('do'), ex2(xs))
    console.log("exercise 2...ok!")
    
    
    
    
    
    
    // Exercise 3
    // ==========
    // Use safeGet and _.head to find the first initial of the user
    var safeGet = _.curry(function(x,o){ return Maybe(o[x]) })
    var user = {id: 2, name: "Albert"}
    console.log("--------Start exercise 3--------")
    
    var ex3 = compose(map(_.head), safeGet('name'));
    
    
    assertDeepEqual(Maybe('A'), ex3(user))
    console.log("exercise 3...ok!")
    
    
    
    
    
    
    // Exercise 4
    // ==========
    // Use Maybe to rewrite ex4 without an if statement
    console.log("--------Start exercise 4--------")
    
    var ex4 = function(n) {
      if(n){
        return parseInt(n);
      }
    }
    
    
    var ex4 = compose(map(parseInt),Maybe)
    
    
    assertDeepEqual(Maybe(4), ex4("4"))
    console.log("exercise 4...ok!")
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    // TEST HELPERS
    // =====================
    function inspectIt(x){
      return (x.inspect && x.inspect()) || (x.toString && x.toString()) || x.valueOf(); //hacky for teachy.
    }
    
    function assertEqual(x,y){
      if(x !== y){ throw("expected "+x+" to equal "+y); }
    }
    function assertDeepEqual(x,y){
      if(x.val !== y.val) throw("expected "+inspectIt(x)+" to equal "+inspectIt(y));
    }
  • 相关阅读:
    JS运行机制之 Event Loop 的思考
    模块机制 之commonJs、node模块 、AMD、CMD
    git报错:'fatal:remote origin already exists'怎么处理?附上git常用操作以及说明。
    Uncaught RangeError: Maximum call stack size exceeded-栈溢出
    对循环内部反复声明变量的写法的一点想法?
    JS的forEach和map方法的区别
    函数的属性和方法之call、apply 及bind
    利用Apach ab对nodejs进行并发负载的压力测试
    怎么判断一个对象是不是数组类型?
    Python模块学习之fabric
  • 原文地址:https://www.cnblogs.com/Answer1215/p/5862639.html
Copyright © 2011-2022 走看看