最終更新:2019-06-08 (土) 23:58:15 (2117d)
メソッドチェーン
Top / メソッドチェーン
Method chaining
jQuery
$("DIV.testClass").css("color","red");
C♯
Object.DoSomething().DoSomethingElse().DoAnotherThing();
PHP
$object->do()->something()->else();
Ruby
puts 'hello!'.length