• js-读书笔记-函数式编程-applicative函数-join的实现


    // 定义applicative函数
    // join函数的函数式编程实现
    
    const _ = require('../lib/underScore.js')
    // const utils = require('../lib/utils.js')
    const Utils = function() {}
    Utils.existy = function(x) {
      return x != null
    }
    // 判断是否为 true 的含义
    Utils.truthy = function(x) {
      return (x != false) && this.existy(x)
      // return x != false
    }
    // console.log(utils)
    // 合并数组
    function cat(head, ...rest) {
      if(Utils.existy(head)) {
        return head.concat.apply(head, rest)
      }
    }
    let a = cat([1,2,3], [4,5], [6,7,8])
    console.log(a) // [1, 2, 3, 4, 5, 6, 7, 8]
    
    // 保持第一个参数,将后面的参数拉平。
    function constructor(head, ...tail) {
      return cat([head], ...tail)
    }
    
    let b = constructor(11, [1,2,3])
    console.log(b) // [11, 1, 2, 3]
    
    // 对所有键调用函数处理后铺平数组
    function mapCat(func, coll) {
      return cat.apply(null, coll.map(func))
    }
    
    // let c = mapCat(function(e) {
    //   return constructor(e, [','])
    // }, [1,2,3])
    // console.log(c)
    
    // 截断最后一个值
    function butLast(coll) {
      return Array.from(coll).slice(0, -1)
    }
    // 生成符号分割的数组
    function interPose(inter, coll) {
      return butLast(mapCat(function(e) {
        return constructor(e, [inter])
      }, coll))
    }
    
    let d = interPose(',', [11,1,2,3])
    console.log(d)
    
    
    
    
    
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
  • 相关阅读:
    QT多语言工具实现支持生成ts文件,ts文件和xlsx文件互转
    python基于PHP+MySQL的综合排课系统
    clock_gettime
    torch其他层和联合使用
    NextJS开发:shadcn/ui中Button组件扩展增加图标
    Vue使用总结-包括Vue2和Vue3
    IP 协议的相关特性
    CSS特效004:hover图片,显示文字或附加层
    Scrapy基本概念——Item Pipeline
    C语言实现DFS和BFS
  • 原文地址:https://blog.csdn.net/junjiahuang/article/details/126854176