RxJS - 数学操作符 Min



min() 方法将接收带有所有值的 Observable,并返回一个带有最小值的可观测对象。它把一个比较函数作为参数,该函数是可选的。

语法

min(comparer_func?: number): Observable

参数

comparer_func - (可选)。一个函数,它将从源 Observable 中筛选要考虑的用于获取最小值的那些值。如果没有提供,则会考虑默认函数。

返回值

返回值是一个 Observable,它将具有最小值。

示例 1

import { of } from 'rxjs';
import { min } from 'rxjs/operators';

let list1 = [1, 6, 15, 10, 58, 2, 40];
let final_val = of(1, 6, 15, 10, 58, 2, 40).pipe(min());

final_val.subscribe(x => console.log("The Min value is "+x));

输出

The Min value is 1

示例 2

import { of ,from} from 'rxjs';
import { min } from 'rxjs/operators';

let list1 = [1, 6, 15, 10, 58, 2, 40];
let final_val = from(list1).pipe(min((a,b) => a - b));
final_val.subscribe(x => console.log("The Min value is "+x));

输出

The Min value is 1
广告