모듈:Sort
이 모듈 문서는 위키백과에서 퍼왔거나 퍼온 것을 기반으로 만들어졌습니다. 따라서 크리에이티브 커먼즈 저작자표시-동일조건변경허락 라이선스로 배포됩니다.
출처: WikiMedia
정렬 모듈입니다.
위 설명은 모듈:Sort/설명문서의 내용을 가져와 보여주고 있습니다. (편집 | 역사) 이 모듈에 대한 수정 연습과 시험은 연습장 (만들기 | 미러)과 시험장 (만들기)에서 할 수 있습니다. 분류는 /설명문서에 넣어주세요. 이 모듈에 딸린 문서. |
local p = {}
function p.asc(frame)
items = splitLine( frame.args[1] );
table.sort( items );
return table.concat( items, "\n" );
end
function p.desc(frame)
items = splitLine( frame.args[1] );
table.sort( items, revComp );
return table.concat( items, "\n" );
end
function splitLine( text )
return mw.text.split( text, "\n", true );
end
function revComp( a, b )
return a > b;
end
return p