zoukankan      html  css  js  c++  java
  • [Functional Programming Monad] Apply Stateful Computations To Functions (.ap, .liftA2)

    When building our stateful computations, there will come a time when we’ll need to combine two or more state transactions at the same time to come up with a new result. Usually this occurs when want to use plain ol’ JavaScript functions with two or more a arguments as part of our stateful computations.

    We first look at how this can be accomplished by using chain and closure to get access to both functions. Then we will explore how we can leverage the of construction helper and the ap Stateinstance method to clean this type of interaction up a bit. We then conclude with an even cleaner approach that takes full advantage of a crocks helper function named liftA2.

    For example, we have a function:

    const namefiy = firstName => lastName => `${lastName}, ${firstName}`;

    It should receive two params to return a string.

    one way is using .ap(), it takes the same input, run with the given functions and return its value, then combine those:

    var _getFullName = State.of(namefiy)
        .ap(getFirstName)
        .ap(getLastName)

    Or we can use .liftA2, it lift the function into State automaticlly:

    var getFullName = liftA2(
        namefiy,
        getFirstName,
        getLastName
    )

    ----

    const { liftA2, composeK, Unit, curry, objOf, compose, State, mapProps, prop, option } = require("crocks");
    
    const { put, get, modify } = State;
    
    const namefiy = firstName => lastName => `${lastName}, ${firstName}`;
    const getWord = number => name  => name.split(' ')[number];
    
    const getFirstName = get(getWord(0));
    const getLastName = get(getWord(1));
    
    var _getFullName = State.of(namefiy)
        .ap(getFirstName)
        .ap(getLastName)
    
    var getFullName = liftA2(
        namefiy,
        getFirstName,
        getLastName
    )
    console.log(
        getFullName
            .evalWith("John Green")
    )
  • 相关阅读:
    团队作业 总结
    个人作业 Alpha项目测试
    第二次作业
    交互式多媒体图书平台的设计与实现
    基于VS Code的C++语言的构建调试环境搭建指南
    码农的自我修养之必备技能 学习笔记
    工程化编程实战callback接口学习
    如何测评一个软件工程师的计算机网络知识水平和编程能力
    深入理解TCP协议及其源代码
    Socket与系统调用深度分析
  • 原文地址:https://www.cnblogs.com/Answer1215/p/10343548.html
Copyright © 2011-2022 走看看