0
私はそうのような不純な機能があります:私は、この関数は何をしたいのかYARD:非有益または意図しないリターンを文書化し
# Impure function: Sets the status for a report_schedule, uses last_sent to
# calculate status
# @param report_schedule [Hash]
# @return [String] Non-useful: value of last_sent that was set
def self.set_report_schedule_status(report_schedule)
# Some logic that calculates status of report_schedule
report_schedule['status'] = status
report_schedule['last_sent'] = Time.now.to_s
end
はstatus
とlast_sent
を設定するが、ここでは副作用は、それがTime.now.to_s
を返すということです。これを文書化する適切な方法はありますか? また、私の関数定義が間違っているか、ちょうどreturn nil
で終了する必要があります。