/** * Calculates the population standard deviation of the input values. * * The argument can be any expression as long as it resolves to an array. * * @see https://docs.mongodb.org/manual/reference/operator/aggregation/stdDevPop/ * @see Expr::stdDevPop * @param mixed|Expr $expression * @return self * * @since 1.3 */ public function stdDevPop($expression) { $this->expr->stdDevPop($expression); return $this; }